home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / isode / isode-8.0-l < prev    next >
Text File  |  1996-11-17  |  229KB  |  5,242 lines

  1. Much of this is related to building a shared library which includes
  2. libisode.a, libdsap.a and libftam.a. It isn't pretty. If you want to
  3. build the shared library yourself expect to have to do a lot of
  4. fiddling around. You will also need a *lot* of disk space :-).
  5.  
  6.   There are also general patches in here - notably to ensure the
  7. timeouts for selects are reset correctly and to correct some rather
  8. nasty carelessness in the logging code that could result in attempted
  9. freeing of string literals.
  10.  
  11.   The 8.0.1 patches are included here. If you have already patched
  12. you 8.0 source tree to 8.0.1 you might want to reverse them out first.
  13. I don't think the 8.0.1 patches conflict with anything I did (they are
  14. mostly to quipu) so you could probably just ignore the rejects...
  15.  
  16.   You will need the documentation for ISODE to set it up. I won't be
  17. uploading it myself but the archive maintainer may have put it in the
  18. same directory where you found this. If not it is on src.doc.ic.ac.uk
  19. under /packages/isode among other places.
  20.  
  21.   You should find patches to PP 6.0 where you found this - along with
  22. precompiled binaries. Note that the binaries are packaged for The Purple
  23. Distribution of Linux. If you aren't using the Purple Distribution's
  24. package manager you will have to read the .../PKG/map files in each
  25. archive to find out where things should go.
  26.  
  27.   If ISODE/X.400/X.500 is of serious interest to you you might like to
  28. consider donating hard disks/fast processors/T1 connections. I'm way
  29. beyond the capabilities of my available resources here :-(.
  30.  
  31.     Mike Jagdis <jaggy@purplet.demon.co.uk>
  32.  
  33.  
  34.  
  35. diff -u --recursive --new-file isode-8.0/Makefile isode-8.0-linux/Makefile
  36. --- isode-8.0/Makefile    Tue Jun 16 13:05:02 1992
  37. +++ isode-8.0-linux/Makefile    Fri Jul  8 16:00:19 1994
  38. @@ -31,7 +31,11 @@
  39.  ##################################################################
  40.  
  41.  LIBDIRS    =    h compat dirent tsap ssap psap pepsy pepy psap2 \
  42. -        acsap rosap rtsap ronot rosy 
  43. +        acsap rosap rtsap ronot rosy
  44. +LINUXISODE=    rosy ronot rosap rtsap acsap psap2 pepy pepsy psap \
  45. +        ssap tsap dirent compat support
  46. +LINUXDSAP=    dsap
  47. +LINUXFTAM=    ftam
  48.  DIRS    =    $(LIBDIRS) support imisc
  49.  OTHERS    =    dsap ftam ftam2 ftam-ftp ftp-ftam others psap2-lpp quipu \
  50.          snmp vt
  51. @@ -41,6 +45,26 @@
  52.              do (echo "cd $$i; $(MAKE) all"; \
  53.                    cd $$i; $(MAKE) all); \
  54.              done
  55. +
  56. +linux-libs:
  57. +        @for i in $(LINUXISODE); \
  58. +            do (echo "cd $$i; $(MAKE) linux-lib"; \
  59. +                cd $$i; \
  60. +                JUMP_DIR=../jump/ JUMP_LIB=libisode \
  61. +                JUMP_OPT=-B/usr/dll/jump/ $(MAKE) linux-lib); \
  62. +            done
  63. +        @for i in $(LINUXDSAP); \
  64. +            do (echo "cd $$i; $(MAKE) linux-lib"; \
  65. +                cd $$i; \
  66. +                JUMP_DIR=../jump/ JUMP_LIB=libdsap \
  67. +                JUMP_OPT=-B/usr/dll/jump/ $(MAKE) linux-lib); \
  68. +            done
  69. +        @for i in $(LINUXFTAM); \
  70. +            do (echo "cd $$i; $(MAKE) linux-lib"; \
  71. +                cd $$i; \
  72. +                JUMP_DIR=../jump/ JUMP_LIB=libftam \
  73. +                JUMP_OPT=-B/usr/dll/jump/ $(MAKE) linux-lib); \
  74. +            done
  75.  
  76.  inst-all:    make-dirs
  77.          @for i in $(DIRS); \
  78. diff -u --recursive --new-file isode-8.0/acsap/Makefile isode-8.0-linux/acsap/Makefile
  79. --- isode-8.0/acsap/Makefile    Tue Jun 16 13:05:59 1992
  80. +++ isode-8.0-linux/acsap/Makefile    Wed Aug 25 14:27:10 1993
  81. @@ -84,6 +84,20 @@
  82.  
  83.  inst-libacsap:    $(LIBDIR)libacsap.a $(LINTDIR)llib-lacsap
  84.  
  85. +zap-acsap:
  86. +        -rm -f $(OFILES) libacsap.a \
  87. +            ACS_tables.o OACS_tables.o DSE_tables.o DASE_tables.o \
  88. +            acsapvrsn.o
  89. +
  90. +linux-lib:    zap-acsap ../jump/libacsap.a
  91. +
  92. +../jump/libacsap.a:    libacsap
  93. +        -rm -f $@
  94. +        cp libacsap.a $@
  95. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  96. +        -@ls -gls $@
  97. +        -@echo ""
  98. +
  99.  $(LIBDIR)libacsap.a:    libacsap.a
  100.          -rm -f $@
  101.          cp libacsap.a $@
  102. @@ -234,6 +248,7 @@
  103.          -@echo ""
  104.  
  105.  dased:        xdased
  106. +        :
  107.  
  108.  xdased:        dased.o DASE_tables.o $(TOPDIR)libdsap.a $(TOPDIR)libisode.a
  109.          $(LDCC) $(LDFLAGS) -o $@ dased.o DASE_tables.o \
  110. diff -u --recursive --new-file isode-8.0/acsap/dased.c isode-8.0-linux/acsap/dased.c
  111. --- isode-8.0/acsap/dased.c    Tue Jun 16 13:06:10 1992
  112. +++ isode-8.0-linux/acsap/dased.c    Wed Jul 13 15:12:13 1994
  113. @@ -303,12 +303,13 @@
  114.          goto no_mem;
  115.          if (*cp != '-')
  116.          ds -> dns_dn = str2dn (cp);
  117. -        free (cp);
  118.  
  119.          if (*cp != '-' && ds -> dns_dn == NULLDN) {
  120.          PY_advise (NULLCP, "bad DN in environment (%s)", cp);
  121. +            free (cp);
  122.          goto send_rsp;
  123.          }
  124. +        free (cp);
  125.      }
  126.      }
  127.  
  128. diff -u --recursive --new-file isode-8.0/acsap/version.local isode-8.0-linux/acsap/version.local
  129. --- isode-8.0/acsap/version.local    Thu Jan  1 01:00:00 1970
  130. +++ isode-8.0-linux/acsap/version.local    Thu Jul  7 14:48:24 1994
  131. @@ -0,0 +1 @@
  132. +45
  133. diff -u --recursive --new-file isode-8.0/compat/Makefile isode-8.0-linux/compat/Makefile
  134. --- isode-8.0/compat/Makefile    Tue Jun 16 13:07:00 1992
  135. +++ isode-8.0-linux/compat/Makefile    Mon Jul  4 13:08:05 1994
  136. @@ -79,6 +79,18 @@
  137.  
  138.  inst-libcompat:    $(LIBDIR)libicompat.a $(LINTDIR)llib-licompat
  139.  
  140. +zap-compat:
  141. +        -rm -f $(OFILES) libcompat.a compatvrsn.o
  142. +
  143. +linux-lib:    zap-compat ../jump/libcompat.a
  144. +
  145. +../jump/libcompat.a:    libcompat.a
  146. +        -rm -f $@
  147. +        cp libcompat.a $@
  148. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  149. +        -@ls -gls $@
  150. +        -@echo ""
  151. +
  152.  $(LIBDIR)libicompat.a:    libcompat.a
  153.          -rm -f $@
  154.          cp libcompat.a $@
  155. @@ -100,7 +112,7 @@
  156.  
  157.  libcompat.a:    compatvrsn.o
  158.          -rm -f $@
  159. -        @$(UTILDIR)make-lib.sh $(SYSTEM) $(ARFLAGS) $@ $(OFILES) \
  160. +        $(UTILDIR)make-lib.sh $(SYSTEM) $(ARFLAGS) $@ $(OFILES) \
  161.              compatvrsn.o
  162.          -@rm -f $(TOPDIR)libcompat.a $(TOPDIR)llib-lcompat
  163.          -@$(LN) libcompat.a $(TOPDIR)libcompat.a
  164. diff -u --recursive --new-file isode-8.0/compat/asprintf.c isode-8.0-linux/compat/asprintf.c
  165. --- isode-8.0/compat/asprintf.c    Tue Jun 16 13:07:00 1992
  166. +++ isode-8.0-linux/compat/asprintf.c    Tue Jul  5 08:55:12 1994
  167. @@ -27,8 +27,8 @@
  168.  
  169.  /* LINTLIBRARY */
  170.  
  171. -#include <stdio.h>
  172.  #include <varargs.h>
  173. +#include <stdio.h>
  174.  #include "general.h"
  175.  #include "manifest.h"
  176.  
  177. diff -u --recursive --new-file isode-8.0/compat/general.c isode-8.0-linux/compat/general.c
  178. --- isode-8.0/compat/general.c    Tue Jun 16 13:07:06 1992
  179. +++ isode-8.0-linux/compat/general.c    Fri Jan 14 11:42:37 1994
  180. @@ -79,7 +79,7 @@
  181.  
  182.  /*     DUP2 */
  183.  
  184. -#ifndef    BSD42
  185. +#if !defined(BSD42) && !defined(__linux__)
  186.  #ifdef    SYS5
  187.  #include <fcntl.h>
  188.  #endif
  189. diff -u --recursive --new-file isode-8.0/compat/getpassword.c isode-8.0-linux/compat/getpassword.c
  190. --- isode-8.0/compat/getpassword.c    Tue Jun 16 13:07:06 1992
  191. +++ isode-8.0-linux/compat/getpassword.c    Wed Jan  5 11:15:41 1994
  192. @@ -32,6 +32,9 @@
  193.  #include "general.h"
  194.  #include "manifest.h"
  195.  #include "sys.file.h"
  196. +#ifdef _POSIX_SOURCE
  197. +#include <termios.h>
  198. +#endif
  199.  
  200.  #ifdef    BSD44
  201.  char   *getpass ();
  202. @@ -51,7 +54,11 @@
  203.      register char  *bp,
  204.             *ep;
  205.  #if    !defined(SYS5) && !defined(XOS_2)
  206. +#if defined(_POSIX_SOURCE)
  207. +    struct termios  sg;
  208. +#else
  209.      struct sgttyb   sg;
  210. +#endif
  211.  #else
  212.      struct termio   sg;
  213.  #endif
  214. @@ -75,10 +82,17 @@
  215.      istat = signal (SIGINT, SIG_IGN);
  216.  
  217.  #if    !defined(SYS5) && !defined(XOS_2)
  218. +#if defined(_POSIX_SOURCE)
  219. +    tcgetattr (fileno (fp), &sg);
  220. +    flags = sg.c_lflag;
  221. +    sg.c_lflag &= ~ECHO;
  222. +    tcsetattr (fileno (fp), TCSADRAIN, &sg);
  223. +#else
  224.      (void) gtty (fileno (fp), &sg);
  225.      flags = sg.sg_flags;
  226.      sg.sg_flags &= ~ECHO;
  227.      (void) stty (fileno (fp), &sg);
  228. +#endif
  229.  #else
  230.      (void) ioctl (fileno (fp), TCGETA, (char *) &sg);
  231.      flags = sg.c_lflag;
  232. @@ -115,8 +129,13 @@
  233.  #endif
  234.  
  235.  #if    !defined(SYS5) && !defined(XOS_2)
  236. +#if defined(_POSIX_SOURCE)
  237. +    sg.c_lflag = flags;    
  238. +    tcsetattr (fileno (fp), TCSADRAIN, &sg);
  239. +#else
  240.      sg.sg_flags = flags;
  241.      (void) stty (fileno (fp), &sg);
  242. +#endif
  243.  #else
  244.      sg.c_lflag = flags;
  245.      (void) ioctl (fileno (fp), TCSETAW, (char *) &sg);
  246. diff -u --recursive --new-file isode-8.0/compat/internet.c isode-8.0-linux/compat/internet.c
  247. --- isode-8.0/compat/internet.c    Tue Jun 16 13:07:09 1992
  248. +++ isode-8.0-linux/compat/internet.c    Wed Jul  6 10:49:53 1994
  249. @@ -40,6 +40,7 @@
  250.  #include <demsb.h>               
  251.  #endif
  252.  
  253. +#include <syslog.h> /* XXXXXX */
  254.  /*   */
  255.  
  256.  #ifdef    TCP
  257. @@ -178,7 +179,7 @@
  258.      }
  259.  
  260.  got_socket: ;
  261. -#if    !defined(BSD43) && !defined(SVR4)
  262. +#if    !defined(BSD43) && !defined(SVR4) && !defined(__linux__)
  263.      if (setsockopt (sd, SOL_SOCKET, SO_KEEPALIVE, NULLCP, 0) == NOTOK)
  264.      SLOG (compat_log, LLOG_EXCEPTIONS, "failed", ("set SO_KEEPALIVE"));
  265.      if (opt1 && setsockopt (sd, SOL_SOCKET, opt1, NULLCP, 0) == NOTOK)
  266. @@ -437,6 +438,9 @@
  267.  struct hostent *gethostbystring (s)
  268.  char   *s;
  269.  {
  270. +#ifdef __linux__
  271. +    return gethostbyname(s);
  272. +#else
  273.      register struct hostent *h;
  274.  #ifndef    DG
  275.      static u_long iaddr;
  276. @@ -465,6 +469,7 @@
  277.      h -> h_addr = (char *) &iaddr;
  278.  
  279.      return h;
  280. +#endif /* __linux__ */
  281.  }
  282.  
  283.  /*     AT&T UNIX: 5 with EXOS 8044 TCP/IP card */
  284. diff -u --recursive --new-file isode-8.0/compat/isotailor.c isode-8.0-linux/compat/isotailor.c
  285. --- isode-8.0/compat/isotailor.c    Tue Jun 16 08:59:09 1992
  286. +++ isode-8.0-linux/compat/isotailor.c    Fri Jul  8 13:04:50 1994
  287. @@ -77,7 +77,7 @@
  288.  
  289.  static char *compatdebug = "none";
  290.  LLog _compat_log = {
  291. -    "%d.log", NULLCP, "compat", LLOG_NONE, LLOG_NONE, -1,
  292. +    "%d.log", "compat", NULLCP, LLOG_NONE, LLOG_NONE, -1,
  293.      LLOGCLS | LLOGCRT | LLOGZER, NOTOK
  294.  };
  295.  LLog *compat_log = &_compat_log;
  296. @@ -105,7 +105,7 @@
  297.  
  298.  static char *psapdebug = "none";
  299.  LLog _psap_log = {
  300. -    "%d.pe", NULLCP, "psap", LLOG_NONE, LLOG_NONE, -1,
  301. +    "%d.pe", "psap", NULLCP, LLOG_NONE, LLOG_NONE, -1,
  302.      LLOGCLS | LLOGCRT | LLOGZER, NOTOK
  303.  };
  304.  LLog *psap_log = &_psap_log;
  305. @@ -1051,7 +1051,7 @@
  306.  register LLog *lp;
  307.  {
  308.      if (lp -> ll_stat & LLOGHDR)
  309. -        free (lp -> ll_hdr);
  310. +        free (lp -> ll_dhdr);
  311.      lp -> ll_stat &= ~LLOGHDR;
  312.  }
  313.  #endif
  314. diff -u --recursive --new-file isode-8.0/compat/logger.c isode-8.0-linux/compat/logger.c
  315. --- isode-8.0/compat/logger.c    Tue Jun 16 13:07:16 1992
  316. +++ isode-8.0-linux/compat/logger.c    Tue Jul  5 13:12:37 1994
  317. @@ -27,8 +27,8 @@
  318.  
  319.  /* LINTLIBRARY */
  320.  
  321. -#include <stdio.h>
  322.  #include <varargs.h>
  323. +#include <stdio.h>
  324.  #include "general.h"
  325.  #include "manifest.h"
  326.  #include "logger.h"
  327. @@ -292,10 +292,11 @@
  328.             *up;
  329.      char    buffer[BUFSIZ],
  330.          user[10];
  331. +    char    *p;
  332.  
  333.      if (prefix == NULLCP) {
  334. -    if ((lp -> ll_stat & LLOGHDR) && strlen (lp -> ll_hdr) == 25)
  335. -        (cp = lp -> ll_hdr)[8] = NULL;
  336. +    if ((lp -> ll_stat & LLOGHDR) && strlen (lp -> ll_dhdr) == 25)
  337. +        (cp = lp -> ll_dhdr)[8] = NULL;
  338.      else
  339.          cp = "unknown";
  340.      }
  341. @@ -314,14 +315,13 @@
  342.      (void) sprintf (buffer, "%-8.8s %05d (%-8.8s)",
  343.              cp, getpid () % 100000, up);
  344.  
  345. -    if (lp -> ll_stat & LLOGHDR)
  346. -    free (lp -> ll_hdr);
  347. -    lp -> ll_stat &= ~LLOGHDR;
  348. -
  349. -    if ((lp -> ll_hdr = malloc ((unsigned) (strlen (buffer) + 1))) == NULLCP)
  350. +    if ((p = malloc ((unsigned) (strlen (buffer) + 1))) == NULLCP)
  351.      return;
  352.  
  353. -    (void) strcpy (lp -> ll_hdr, buffer);
  354. +    (void) strcpy (p, buffer);
  355. +    if (lp->ll_dhdr && (lp -> ll_stat & LLOGHDR))
  356. +    free (lp -> ll_dhdr);
  357. +    lp -> ll_dhdr = p;
  358.      lp -> ll_stat |= LLOGHDR;
  359.  }
  360.  
  361. diff -u --recursive --new-file isode-8.0/compat/putenv.c isode-8.0-linux/compat/putenv.c
  362. --- isode-8.0/compat/putenv.c    Tue Jun 16 13:07:19 1992
  363. +++ isode-8.0-linux/compat/putenv.c    Wed Jan  5 11:15:39 1994
  364. @@ -31,6 +31,8 @@
  365.  #include "general.h"
  366.  #include "manifest.h"
  367.  
  368. +#ifndef _POSIX_SOURCE
  369. +
  370.  /*   */
  371.  
  372.  extern  char **environ;
  373. @@ -104,3 +106,5 @@
  374.  
  375.      return (*s1 == '\0' && *--s2 == '=');
  376.  }
  377. +
  378. +#endif /* _POSIX_SOURCE */
  379. diff -u --recursive --new-file isode-8.0/compat/select.c isode-8.0-linux/compat/select.c
  380. --- isode-8.0/compat/select.c    Tue Jun 16 13:07:22 1992
  381. +++ isode-8.0-linux/compat/select.c    Fri Jul  8 14:32:44 1994
  382. @@ -133,11 +133,6 @@
  383.      msecs = secs * 1000;
  384.      else
  385.      msecs = -1;
  386. -#else
  387. -    if (secs != NOTOK)
  388. -    tv -> tv_sec = secs, tv -> tv_usec = 0;
  389. -    else
  390. -    tv = NULL;
  391.  #endif
  392.  
  393.  #endif
  394. @@ -167,6 +162,13 @@
  395.          /* handlers rhandler whandler xhandler are being called */
  396.          /* by the X25SelectCall routine                         */
  397.  
  398. +#if !defined(masscomp) || !defined(_ATT)
  399. +    if (secs != NOTOK)
  400. +        tv -> tv_sec = secs, tv -> tv_usec = 0;
  401. +    else
  402. +        tv = NULL;
  403. +#endif
  404. +
  405.          error = X25SelectCall(tv);
  406.  
  407.          if ( error < NULL )  {
  408. @@ -201,6 +203,11 @@
  409.  #if  defined(masscomp) && defined(_ATT)
  410.      switch (n = select (nfds, rfds, wfds, msecs)) {
  411.  #else
  412. +    if (secs != NOTOK)
  413. +        tv -> tv_sec = secs, tv -> tv_usec = 0;
  414. +    else
  415. +        tv = NULL;
  416. +
  417.      switch (n = select (nfds, rfds, wfds, efds, tv)) {
  418.  #endif
  419.  #endif
  420. diff -u --recursive --new-file isode-8.0/compat/strdup.c isode-8.0-linux/compat/strdup.c
  421. --- isode-8.0/compat/strdup.c    Tue Jun 16 13:07:33 1992
  422. +++ isode-8.0-linux/compat/strdup.c    Wed Jan  5 11:15:41 1994
  423. @@ -33,7 +33,7 @@
  424.  #include "tailor.h"
  425.  
  426.  /*   */
  427. -#if !defined(SVR4) || defined(_AIX)
  428. +#if (!defined(SVR4) && !defined(__linux__)) || defined(_AIX)
  429.                        /* strdup in AIX does not seem to use QUIPUs malloc! */
  430.  
  431.  char   *strdup (str)
  432. diff -u --recursive --new-file isode-8.0/compat/tailor.c isode-8.0-linux/compat/tailor.c
  433. --- isode-8.0/compat/tailor.c    Tue Jun 16 13:07:35 1992
  434. +++ isode-8.0-linux/compat/tailor.c    Fri Jul  8 13:04:46 1994
  435. @@ -80,7 +80,7 @@
  436.  
  437.  static char *compatdebug = "none";
  438.  LLog _compat_log = {
  439. -    "%d.log", NULLCP, "compat", LLOG_NONE, LLOG_NONE, -1,
  440. +    "%d.log", "compat", NULLCP, LLOG_NONE, LLOG_NONE, -1,
  441.      LLOGCLS | LLOGCRT | LLOGZER, NOTOK
  442.  };
  443.  LLog *compat_log = &_compat_log;
  444. @@ -108,7 +108,7 @@
  445.  
  446.  static char *psapdebug = "none";
  447.  LLog _psap_log = {
  448. -    "%d.pe", NULLCP, "psap", LLOG_NONE, LLOG_NONE, -1,
  449. +    "%d.pe", "psap", NULLCP, LLOG_NONE, LLOG_NONE, -1,
  450.      LLOGCLS | LLOGCRT | LLOGZER, NOTOK
  451.  };
  452.  LLog *psap_log = &_psap_log;
  453. @@ -1054,7 +1054,7 @@
  454.  register LLog *lp;
  455.  {
  456.      if (lp -> ll_stat & LLOGHDR)
  457. -        free (lp -> ll_hdr);
  458. +        free (lp -> ll_dhdr);
  459.      lp -> ll_stat &= ~LLOGHDR;
  460.  }
  461.  #endif
  462. diff -u --recursive --new-file isode-8.0/config/linux.h isode-8.0-linux/config/linux.h
  463. --- isode-8.0/config/linux.h    Thu Jan  1 01:00:00 1970
  464. +++ isode-8.0-linux/config/linux.h    Thu Jul  7 13:27:22 1994
  465. @@ -0,0 +1,30 @@
  466. +#ifndef    _CONFIG_
  467. +#define    _CONFIG_
  468. +
  469. +#define WRITEV
  470. +#define SVR4_UCB        /* we have some of these bits too */
  471. +#define LINUX            /* more strictly Linux */
  472. +
  473. +#define BSDSIGS            /* BSD style signals work. */
  474. +
  475. +#undef    SIGPOLL            /* None of these actual work... */
  476. +#undef    SIGURG
  477. +#undef    SIGEMT
  478. +/* #undef    SIGIO */
  479. +
  480. +#define BSDLIBC            /* We have the BSD insque/remque. */
  481. +#define SWAPLIB            /* Can swap between local and net byte order */
  482. +#define SHADOW_PW        /* use shadow password file */
  483. +#define VSPRINTF
  484. +#define TEMPNAM
  485. +
  486. +#define GETDENTS
  487. +#define NFS            /* NFS implies GETDENTS too I think. */
  488. +
  489. +#define    TCP            /* has TCP/IP (of course) */
  490. +#define    SOCKETS            /*   provided by sockets */
  491. +#define BIND
  492. +
  493. +#define RFINGER "/usr/bin/finger"
  494. +
  495. +#endif
  496. diff -u --recursive --new-file isode-8.0/config/linux.make isode-8.0-linux/config/linux.make
  497. --- isode-8.0/config/linux.make    Thu Jan  1 01:00:00 1970
  498. +++ isode-8.0-linux/config/linux.make    Thu Jul 14 10:20:26 1994
  499. @@ -0,0 +1,87 @@
  500. +###############################################################################
  501. +#   Instructions to Make, for compilation of ISODE processes for Linux
  502. +###############################################################################
  503. +
  504. +###############################################################################
  505. +#
  506. +# $Header: /xtel/isode/isode/config/RCS/bsd43.make,v 9.0 1992/06/16 12:08:13 isode Rel $
  507. +#
  508. +#
  509. +# $Log: bsd43.make,v $
  510. +# Revision 9.0  1992/06/16  12:08:13  isode
  511. +# Release 8.0
  512. +#
  513. +#
  514. +###############################################################################
  515. +
  516. +###############################################################################
  517. +#
  518. +#                 NOTICE
  519. +#
  520. +#    Acquisition, use, and distribution of this module and related
  521. +#    materials are subject to the restrictions of a license agreement.
  522. +#    Consult the Preface in the User's Manual for the full terms of
  523. +#    this agreement.
  524. +#
  525. +###############################################################################
  526. +
  527. +
  528. +###############################################################################
  529. +# Options
  530. +###############################################################################
  531. +
  532. +OPTIONS    =    -I. -I$(TOPDIR)h $(PEPYPATH) $(KRBOPT)
  533. +
  534. +HDIR    =    $(TOPDIR)h/
  535. +UTILDIR    =    $(TOPDIR)util/
  536. +BINDIR    =    /usr/Isode/bin/
  537. +SBINDIR    =    /usr/Isode/sbin/
  538. +ETCDIR    =    /usr/Isode/etc/
  539. +LOGDIR    =    /var/log/
  540. +INCDIRM    =    /usr/Isode/include/isode
  541. +INCDIR    =    $(INCDIRM)/
  542. +PEPYDIRM=    $(INCDIR)pepy
  543. +PEPYDIR    =    $(PEPYDIRM)/
  544. +PEPSYDIRM=    $(INCDIR)pepsy
  545. +PEPSYDIR=    $(PEPSYDIRM)/
  546. +LIBDIR    =    /usr/lib/
  547. +LINTDIR    =    /usr/lib/lint/
  548. +
  549. +LIBISODE=    $(TOPDIR)libisode.a
  550. +LIBDSAP    =    $(TOPDIR)libdsap.a
  551. +
  552. +SYSTEM    =    -bsd42
  553. +MANDIR    =    /usr/man/
  554. +MANOPTS    =    -bsd42
  555. +
  556. +
  557. +###############################################################################
  558. +# Programs and Libraries
  559. +###############################################################################
  560. +
  561. +MAKE    =    ./make DESTDIR=$(DESTDIR) $(MFLAGS) -k
  562. +SHELL    =    /bin/sh
  563. +
  564. +CC      =    cc $(JUMP_OPT)
  565. +CFLAGS  =    -pipe -O6 -m486 -fwritable-strings -D__STDC__=1 -D__USE_BSD_SIGNALS $(OPTIONS)
  566. +#CFLAGS  =    -pipe -O6 -g -m486 -fwritable-strings -D__STDC__=1 -D__USE_BSD_SIGNALS $(OPTIONS)
  567. +LIBCFLAGS=          $(CFLAGS)
  568. +LINT    =    lint
  569. +LFLAGS  =    -bhuz $(OPTIONS)
  570. +LD    =    ld
  571. +LDCC    =    $(CC)
  572. +LDFLAGS =    -s
  573. +ARFLAGS    =
  574. +
  575. +LN    =    ln
  576. +
  577. +LSOCKET    =    $(KRBLIB) -lshadow -ldbm -lm
  578. +
  579. +
  580. +###############################################################################
  581. +# Generation Rules for library modules
  582. +###############################################################################
  583. +
  584. +.c.o:;        $(CC) $(LIBCFLAGS) -c $*.c
  585. +        -ld -x -r $@
  586. +        mv a.out $@
  587. diff -u --recursive --new-file isode-8.0/dirent/Makefile isode-8.0-linux/dirent/Makefile
  588. --- isode-8.0/dirent/Makefile    Tue Jun 16 11:17:26 1992
  589. +++ isode-8.0-linux/dirent/Makefile    Tue Aug 24 11:53:42 1993
  590. @@ -45,6 +45,18 @@
  591.  
  592.  inst-libdirent:    $(LIBDIR)libdirent.a $(LINTDIR)llib-ldirent
  593.  
  594. +zap-dirent:
  595. +        -rm -f $(OFILES) libdirent.a direntvrsn.o
  596. +
  597. +linux-lib:    zap-dirent ../jump/libdirent.a
  598. +
  599. +../jump/libdirent.a:    libdirent.a
  600. +        -rm -f $@
  601. +        cp libdirent.a $@
  602. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  603. +        -@ls -gls $@
  604. +        -@echo ""
  605. +
  606.  $(LIBDIR)libdirent.a:    libdirent.a
  607.          -rm -f $@
  608.          cp libdirent.a $@
  609. diff -u --recursive --new-file isode-8.0/dirent/scandir.c isode-8.0-linux/dirent/scandir.c
  610. --- isode-8.0/dirent/scandir.c    Tue Jun 16 11:17:27 1992
  611. +++ isode-8.0-linux/dirent/scandir.c    Wed Jan  5 11:15:41 1994
  612. @@ -19,6 +19,8 @@
  613.   * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  614.   */
  615.  
  616. +#ifndef __linux__
  617. +
  618.  #if defined(LIBC_SCCS) && !defined(lint)
  619.  static char sccsid[] = "@(#)scandir.c    5.9 (Berkeley) 6/24/90";
  620.  #endif /* LIBC_SCCS and not lint */
  621. @@ -121,3 +123,8 @@
  622.      return(strcmp((*(struct dirent **)d1)->d_name,
  623.          (*(struct dirent **)d2)->d_name));
  624.  }
  625. +
  626. +#else
  627. +int    _scandir_stub () {;}
  628. +int    _alphasort_stub () {;}
  629. +#endif
  630. diff -u --recursive --new-file isode-8.0/dsap/Makefile isode-8.0-linux/dsap/Makefile
  631. --- isode-8.0/dsap/Makefile    Tue Jun 16 13:12:27 1992
  632. +++ isode-8.0-linux/dsap/Makefile    Wed Aug 25 08:35:46 1993
  633. @@ -48,6 +48,16 @@
  634.  clean:        sub-clean
  635.              rm -f lib*.a lib*.so* llib-l* _* *.tmp *.orig *.o z* dsapvrsn.c
  636.          rm -f libdsap-shared
  637. +
  638. +linux-lib:    dsap-linux linux-subs
  639. +
  640. +linux-subs:
  641. +        @for i in $(DIRS); \
  642. +            do (echo "cd $$i; $(MAKE) linux-lib"; \
  643. +                cd $$i; \
  644. +                JUMP_DIR=../../jump/ JUMP_LIB=libdsap \
  645. +                JUMP_OPT=-B/usr/dll/jump/ $(MAKE) linux-lib); \
  646. +            done
  647.  sub-all:
  648.          @for i in $(DIRS); \
  649.              do (echo "cd $$i; $(MAKE) all"; \
  650. @@ -79,6 +89,18 @@
  651.  inst-libdsap:   inst-headers $(LIBDIR)libdsap.a $(LINTDIR)llib-ldsap
  652.  
  653.  inst-headers:;    cd x500as; $(MAKE) inst-headers
  654. +
  655. +inst-libcompat:    $(LIBDIR)libicompat.a $(LINTDIR)llib-licompat
  656. +
  657. +zap-dsap:
  658. +        -rm -f dsapvrsn.o
  659. +
  660. +dsap-linux:    zap-dsap ../jump/libdsap.a
  661. +
  662. +../jump/libdsap.a:    dsapvrsn.o
  663. +        -rm -f $@
  664. +        ar q $@ dsapvrsn.o
  665. +        -@echo ""
  666.  
  667.  $(LIBDIR)libdsap.a:     libdsap.a
  668.          @for i in libdsap.* ;\
  669. diff -u --recursive --new-file isode-8.0/dsap/common/Makefile isode-8.0-linux/dsap/common/Makefile
  670. --- isode-8.0/dsap/common/Makefile    Tue Jun 16 13:12:40 1992
  671. +++ isode-8.0-linux/dsap/common/Makefile    Tue Aug 24 12:10:09 1993
  672. @@ -128,6 +128,18 @@
  673.          $(LINT) $(LFLAGS) $(CFILES) $(LLIBS) \
  674.              | grep -v "warning: possible pointer alignment problem"
  675.  
  676. +zap-common:
  677. +        -rm -f $(OFILES) libcommon.a commonvrsn.o
  678. +
  679. +linux-lib:    zap-common ../../jump/libcommon.a
  680. +
  681. +../../jump/libcommon.a:    libcommon.a
  682. +        -rm -f $@
  683. +        cp libcommon.a $@
  684. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  685. +        -@ls -gls $@
  686. +        -@echo ""
  687. +
  688.  test:        test.o libcommon.a ../libx500as.a
  689.          $(LDCC) $(LDFLAGS) test.o libcommon.a ../libx500as.a \
  690.              libcommon.a $(LIBISODE) -o test
  691. diff -u --recursive --new-file isode-8.0/dsap/common/integer.c isode-8.0-linux/dsap/common/integer.c
  692. --- isode-8.0/dsap/common/integer.c    Tue Jun 16 13:13:16 1992
  693. +++ isode-8.0-linux/dsap/common/integer.c    Wed Jan  5 11:15:44 1994
  694. @@ -108,7 +108,9 @@
  695.  static int * intparse (str)
  696.  char * str;
  697.  {
  698. +#ifndef atoi
  699.  int atoi();
  700. +#endif
  701.  int * x;
  702.  
  703.      x = (int *) smalloc (sizeof (int));
  704. diff -u --recursive --new-file isode-8.0/dsap/net/Makefile isode-8.0-linux/dsap/net/Makefile
  705. --- isode-8.0/dsap/net/Makefile    Tue Jun 16 13:14:06 1992
  706. +++ isode-8.0-linux/dsap/net/Makefile    Tue Aug 24 12:11:13 1993
  707. @@ -88,6 +88,18 @@
  708.  netvrsn.c:      $(OFILES)
  709.          @$(UTILDIR)version.sh net > $@
  710.  
  711. +zap-net:
  712. +        -rm -f $(OFILES) libnet.a netvrsn.o
  713. +
  714. +linux-lib:    zap-net ../../jump/libnet.a
  715. +
  716. +../../jump/libnet.a:    libnet.a
  717. +        -rm -f $@
  718. +        cp libnet.a $@
  719. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  720. +        -@ls -gls $@
  721. +        -@echo ""
  722. +
  723.  l-libnet:       $(CFILES) true
  724.          $(LINT) $(LFLAGS) $(CFILES) $(LLIBS) \
  725.              | grep -v "warning: possible pointer alignment problem"
  726. diff -u --recursive --new-file isode-8.0/dsap/x500as/Makefile isode-8.0-linux/dsap/x500as/Makefile
  727. --- isode-8.0/dsap/x500as/Makefile    Tue Jun 16 13:14:33 1992
  728. +++ isode-8.0-linux/dsap/x500as/Makefile    Tue Aug 24 12:08:21 1993
  729. @@ -81,6 +81,18 @@
  730.  l-libx500as:;    $(LINT) $(LFLAGS) $(CFILES) $(PEPY-C) $(LLIBS) \
  731.              | grep -v "warning: possible pointer alignment problem"
  732.  
  733. +zap-x500as:
  734. +        -rm -f $(OFILES) libx500as.a x500asvrsn.o
  735. +
  736. +linux-lib:    zap-x500as ../../jump/libx500as.a
  737. +
  738. +../../jump/libx500as.a:    libx500as.a
  739. +        -rm -f $@
  740. +        cp libx500as.a $@
  741. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  742. +        -@ls -gls $@
  743. +        -@echo ""
  744. +
  745.  
  746.  #######################################################
  747.  # saber
  748. diff -u --recursive --new-file isode-8.0/ftam/Makefile isode-8.0-linux/ftam/Makefile
  749. --- isode-8.0/ftam/Makefile    Tue Jun 16 13:14:56 1992
  750. +++ isode-8.0-linux/ftam/Makefile    Wed Aug 25 14:33:01 1993
  751. @@ -78,6 +78,19 @@
  752.  
  753.  inst-libftam:    $(LIBDIR)libftam.a inst-headers $(LINTDIR)llib-lftam
  754.  
  755. +zap-ftam:
  756. +        -rm -f $(OFILES) libftam.a \
  757. +            CONT_tables.o FADU_tables.o FTAM_tables.o ftamvrsn.o
  758. +
  759. +linux-lib:    zap-ftam ../jump/libftam.a
  760. +
  761. +../jump/libftam.a:    libftam
  762. +        -rm -f $@
  763. +        cp libftam.a $@
  764. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  765. +        -@ls -gls $@
  766. +        -@echo ""
  767. +
  768.  $(LIBDIR)libftam.a:    libftam.a
  769.          -rm -f $@
  770.          cp libftam.a $@
  771. diff -u --recursive --new-file isode-8.0/ftam2/Makefile isode-8.0-linux/ftam2/Makefile
  772. --- isode-8.0/ftam2/Makefile    Tue Jun 16 13:15:44 1992
  773. +++ isode-8.0-linux/ftam2/Makefile    Mon Aug 23 14:19:27 1993
  774. @@ -72,6 +72,7 @@
  775.          -@echo ""
  776.  
  777.  ftamd:        xftamd
  778. +        :
  779.  
  780.  xftamd:        ftamd.o ftamsystem.o ftamd-manage.o ftamd-select.o \
  781.              ftamd-trans.o ftamsbr.o DOCS_tables.o $(LIBD)
  782. @@ -107,6 +108,7 @@
  783.          -@echo ""
  784.  
  785.  ftam:        xftam
  786. +        :
  787.  
  788.  xftam:        ftam.o ftamuser.o ftam-assoc.o ftam-dir.o ftam-get.o \
  789.              ftam-glob.o ftam-ls.o ftam-mgmt.o ftam-put.o \
  790. Binary files isode-8.0/ftam2/ftam and isode-8.0-linux/ftam2/ftam differ
  791. diff -u --recursive --new-file isode-8.0/ftam2/ftam-get.c isode-8.0-linux/ftam2/ftam-get.c
  792. --- isode-8.0/ftam2/ftam-get.c    Tue Jun 16 13:15:45 1992
  793. +++ isode-8.0-linux/ftam2/ftam-get.c    Wed Jan  5 11:15:48 1994
  794. @@ -27,6 +27,9 @@
  795.  
  796.  #include <errno.h>
  797.  #include <stdio.h>
  798. +#ifdef _POSIX_SOURCE
  799. +#include <unistd.h>
  800. +#endif
  801.  #include "ftamuser.h"
  802.  
  803.  /*   */
  804. Binary files isode-8.0/ftam2/ftamd and isode-8.0-linux/ftam2/ftamd differ
  805. diff -u --recursive --new-file isode-8.0/ftam2/ftamd-select.c isode-8.0-linux/ftam2/ftamd-select.c
  806. --- isode-8.0/ftam2/ftamd-select.c    Tue Jun 16 13:15:49 1992
  807. +++ isode-8.0-linux/ftam2/ftamd-select.c    Wed Jan  5 11:15:49 1994
  808. @@ -28,6 +28,9 @@
  809.  #include <grp.h>
  810.  #include <stdio.h>
  811.  #include <pwd.h>
  812. +#ifdef _POSIX_SOURCE
  813. +#include <unistd.h>
  814. +#endif
  815.  #include "ftamsystem.h"
  816.  
  817.  
  818. @@ -63,6 +66,10 @@
  819.  #endif
  820.  
  821.  
  822. +#if !defined(SYS5) && !defined(BRIDGE)
  823. +static int  EACCESS ();
  824. +#endif
  825. +
  826.  #ifdef    SYS5
  827.  #define    EACCESS    access
  828.  
  829. @@ -1528,13 +1535,21 @@
  830.  {
  831.      int        result;
  832.  
  833. +#ifdef _POSIX_SOURCE
  834. +    (void) setreuid (myuid, 0);
  835. +#else
  836.      (void) seteuid (0);
  837.      (void) setruid (myuid);
  838. +#endif
  839.  
  840.      result = access (file, mode);
  841.  
  842. +#ifdef _POSIX_SOURCE
  843. +    (void) setreuid (0, myuid);
  844. +#else
  845.      (void) setruid (0);
  846.      (void) seteuid (myuid);
  847. +#endif
  848.  
  849.      return result;
  850.  }
  851. diff -u --recursive --new-file isode-8.0/ftam2/ftamd-trans.c isode-8.0-linux/ftam2/ftamd-trans.c
  852. --- isode-8.0/ftam2/ftamd-trans.c    Tue Jun 16 13:15:50 1992
  853. +++ isode-8.0-linux/ftam2/ftamd-trans.c    Wed Jan  5 11:15:49 1994
  854. @@ -31,6 +31,10 @@
  855.  #include <sys/times.h>
  856.  #define    TMS
  857.  #endif
  858. +#ifdef _POSIX_SOURCE
  859. +#include <sys/times.h>
  860. +#define TMS
  861. +#endif
  862.  
  863.  /*     DATA */
  864.  
  865. diff -u --recursive --new-file isode-8.0/ftam2/ftamsystem.c isode-8.0-linux/ftam2/ftamsystem.c
  866. --- isode-8.0/ftam2/ftamsystem.c    Tue Jun 16 13:15:52 1992
  867. +++ isode-8.0-linux/ftam2/ftamsystem.c    Wed Jan  5 11:15:49 1994
  868. @@ -44,6 +44,7 @@
  869.  
  870.  #ifdef SHADOW_PW
  871.  #include <shadow.h>
  872. +#include <shadow/pwauth.h>
  873.  #endif
  874.  
  875.  #ifdef    SYS5
  876. @@ -345,14 +346,23 @@
  877.        else
  878.            pw->pw_passwd = shad_res->sp_pwdp;
  879.      }
  880. -#endif /* SHADOW_PW */
  881. -
  882.  
  883. +    if (!guest) {
  884. +          if (pw->pw_passwd && pw->pw_passwd[0] == '@'
  885. +          && pw_auth(pw->pw_passwd, pw->pw_name, PW_FTP, fts->fts_password)) {
  886. +               seterr (FS_ACS_PASSWORD, EREF_RFSU, EREF_IFSU, "");
  887. +          } else if (!valid(fts->fts_password, pw)) {
  888. +               seterr (FS_ACS_PASSWORD, EREF_RFSU, EREF_IFSU, "");
  889. +          }
  890. +    }
  891. +#else /* SHADOW_PW */
  892.      if ((!guest && fts -> fts_password == NULL)
  893.          || *pw -> pw_passwd == NULL
  894.          || (!guest && !chkpassword (initiator, pw -> pw_passwd,
  895.                      fts -> fts_password)))
  896.      seterr (FS_ACS_PASSWORD, EREF_RFSU, EREF_IFSU, "");
  897. +#endif /* SHADOW_PW */
  898. +
  899.  
  900.  #ifdef DEBUG
  901.      advise (LLOG_DEBUG, NULLCP,
  902. diff -u --recursive --new-file isode-8.0/ftam2/ftamuser.c isode-8.0-linux/ftam2/ftamuser.c
  903. --- isode-8.0/ftam2/ftamuser.c    Tue Jun 16 13:15:53 1992
  904. +++ isode-8.0-linux/ftam2/ftamuser.c    Wed Jan  5 11:15:49 1994
  905. @@ -34,6 +34,10 @@
  906.  #include <sys/times.h>
  907.  #define    TMS
  908.  #endif
  909. +#ifdef _POSIX_SOURCE
  910. +#include <sys/times.h>
  911. +#define TMS
  912. +#endif
  913.  #ifdef    BSD42
  914.  #include <sys/ioctl.h>
  915.  #endif
  916. diff -u --recursive --new-file isode-8.0/h/general.h isode-8.0-linux/h/general.h
  917. --- isode-8.0/h/general.h    Wed Jun 17 11:32:31 1992
  918. +++ isode-8.0-linux/h/general.h    Thu Aug 19 10:08:42 1993
  919. @@ -270,6 +270,7 @@
  920.  
  921.  /*   ntohs etc */
  922.  
  923. +#ifndef __linux__
  924.  #ifndef    ntohs
  925.  unsigned short    ntohs ();
  926.  #endif
  927. @@ -282,6 +283,7 @@
  928.  #ifndef    htonl
  929.  unsigned long    htonl ();
  930.  #endif
  931. +#endif /* __linux__ */
  932.  
  933.  int    char2bcd ();
  934.  int    bcd2char ();
  935. diff -u --recursive --new-file isode-8.0/h/manifest.h isode-8.0-linux/h/manifest.h
  936. --- isode-8.0/h/manifest.h    Wed Jun 17 11:32:31 1992
  937. +++ isode-8.0-linux/h/manifest.h    Fri Sep 10 15:57:52 1993
  938. @@ -200,7 +200,7 @@
  939.  #include <sys/select.h>
  940.  #endif
  941.  
  942. -#ifdef    SYS5NLY
  943. +#ifdef SYS5NLY
  944.  typedef unsigned char    u_char;
  945.  typedef unsigned short    u_short;
  946.  typedef unsigned int    u_int;
  947. @@ -303,7 +303,7 @@
  948.  /*     POSIX */
  949.  
  950.  #ifndef    SETSID
  951. -#if    defined(SUNOS41) || defined(BSD44) || defined (SVR4) || defined(_AIX)
  952. +#if    defined(SUNOS41) || defined(BSD44) || defined (SVR4) || defined(_AIX) | defined(__linux__)
  953.  #define    SETSID
  954.  #endif
  955.  #endif
  956. diff -u --recursive --new-file isode-8.0/h/psap.h isode-8.0-linux/h/psap.h
  957. --- isode-8.0/h/psap.h    Wed Jun 17 11:32:31 1992
  958. +++ isode-8.0-linux/h/psap.h    Thu Sep  2 16:17:48 1993
  959. @@ -541,9 +541,13 @@
  960.  extern struct qbuf *Fqb;
  961.  extern struct qbuf *Qb;
  962.  
  963. +#ifdef USE_QBUF2PE_FAST
  964. +    /*  This is a faster version of qbuf2pe, but it has a memory leak. */
  965.  #define qbuf2pe(qb, len, result) (Byteno = 0, Hqb = qb, \
  966.                                          Fqb = (Qb = (qb) -> qb_forw), \
  967.                                          qbuf2pe_f (result))
  968. +#endif
  969. +
  970.  PE    qbuf2pe_f ();
  971.  char   *qb2str ();
  972.  struct qbuf *str2qb ();
  973. diff -u --recursive --new-file isode-8.0/h/quipu/oid.h isode-8.0-linux/h/quipu/oid.h
  974. --- isode-8.0/h/quipu/oid.h    Wed Jun 17 11:32:32 1992
  975. +++ isode-8.0-linux/h/quipu/oid.h    Thu Sep  2 16:17:46 1993
  976. @@ -79,6 +79,7 @@
  977.  
  978.      /* NON leaf object class */
  979.  #define QUIPU_DSA    "0.9.2342.19200300.99.3.1"
  980. +#define QUIPUOBJECT    "0.9.2342.19200300.99.3.2"
  981.  #define NONLEAFOBJECT    "0.9.2342.19200300.99.3.6"
  982.  #define EXTERNOBJECT    "0.9.2342.19200300.99.3.9"
  983.  
  984. diff -u --recursive --new-file isode-8.0/h/sys.file.h isode-8.0-linux/h/sys.file.h
  985. --- isode-8.0/h/sys.file.h    Wed Jun 17 11:32:31 1992
  986. +++ isode-8.0-linux/h/sys.file.h    Thu Sep 16 10:36:05 1993
  987. @@ -31,7 +31,7 @@
  988.  #include <sys/ioctl.h>
  989.  #endif
  990.  
  991. -#ifdef  BSD42
  992. +#if defined(BSD42) || defined(__linux__)
  993.  #include <sys/file.h>
  994.  #else    
  995.  #ifdef  SYS5
  996. diff -u --recursive --new-file isode-8.0/h/usr.dirent.h isode-8.0-linux/h/usr.dirent.h
  997. --- isode-8.0/h/usr.dirent.h    Wed Jun 17 11:32:31 1992
  998. +++ isode-8.0-linux/h/usr.dirent.h    Fri Dec  3 13:27:48 1993
  999. @@ -56,8 +56,9 @@
  1000.  
  1001.  extern char             *getcwd ();
  1002.  
  1003. -
  1004. +#ifndef __linux__
  1005.  #define    scandir    _scandir
  1006.  #define    alphasort _alphasort
  1007. +#endif
  1008.  
  1009.  extern char *direntversion;
  1010. diff -u --recursive --new-file isode-8.0/imisc/Makefile isode-8.0-linux/imisc/Makefile
  1011. --- isode-8.0/imisc/Makefile    Tue Jun 16 13:23:44 1992
  1012. +++ isode-8.0-linux/imisc/Makefile    Mon Aug 23 13:49:29 1993
  1013. @@ -73,6 +73,7 @@
  1014.          -@echo ""
  1015.  
  1016.  imiscd:        ximiscd$(LPP)
  1017. +        :
  1018.  
  1019.  ximiscd$(LPP):    imiscd.o IMISC-Rops.o ryresponder.o IMISC_tables.o $(LIBES)
  1020.          $(LDCC) $(LDFLAGS) -o $@ imiscd.o IMISC-Rops.o ryresponder.o \
  1021. @@ -107,6 +108,7 @@
  1022.          -@echo ""
  1023.  
  1024.  imisc:        ximisc$(LPP)
  1025. +        :
  1026.  
  1027.  ximisc$(LPP):    imisc.o IMISC-Iops.o ryinitiator.o IMISC_tables.o $(LIBES)
  1028.          $(LDCC) $(LDFLAGS) -o $@ imisc.o IMISC-Iops.o ryinitiator.o \
  1029. diff -u --recursive --new-file isode-8.0/imisc/imiscd.c isode-8.0-linux/imisc/imiscd.c
  1030. --- isode-8.0/imisc/imiscd.c    Tue Jun 16 13:23:46 1992
  1031. +++ isode-8.0-linux/imisc/imiscd.c    Fri Jul  8 17:26:25 1994
  1032. @@ -263,7 +263,7 @@
  1033.  #define    LMAX    (sizeof (ut -> ut_line))
  1034.  #define    NMAX    (sizeof (ut -> ut_name))
  1035.  
  1036. -#ifdef    SYS5
  1037. +#if defined(SYS5) || defined(__linux__)
  1038.  struct utmp *getutent ();
  1039.  #endif
  1040.  
  1041. @@ -277,7 +277,7 @@
  1042.  caddr_t    in;
  1043.  struct RoSAPindication *roi;
  1044.  {
  1045. -#ifndef    SYS5
  1046. +#if !defined(SYS5) && !defined(__linux__)
  1047.      int        ud;
  1048.  #endif
  1049.      register char  *dp;
  1050. @@ -299,7 +299,7 @@
  1051.      ia5 = NULL;
  1052.      ia5p = &ia5;
  1053.  
  1054. -#ifndef    SYS5
  1055. +#if !defined(SYS5) && !defined(__linux__)
  1056.      if ((ud = open ("/etc/utmp", 0)) == NOTOK) {
  1057.      int    result;
  1058.  
  1059. @@ -344,6 +344,12 @@
  1060.      (void) sprintf (buffer, "%-*.*s %-*.*s %.12s",
  1061.          NMAX, NMAX, ut -> ut_name, LMAX, LMAX, ut -> ut_line,
  1062.          dp + 4);
  1063. +
  1064. +#ifdef UT_HOSTSIZE
  1065. +    if (ut -> ut_host[0])
  1066. +        (void) sprintf (buffer + strlen (buffer), "\t(%.*s)",
  1067. +            UT_HOSTSIZE, ut -> ut_host);
  1068. +#endif
  1069.  
  1070.      if ((*ia5p = str2ia5list (buffer)) == NULL)
  1071.          goto congested;
  1072. diff -u --recursive --new-file isode-8.0/jump/Makefile isode-8.0-linux/jump/Makefile
  1073. --- isode-8.0/jump/Makefile    Thu Jan  1 01:00:00 1970
  1074. +++ isode-8.0-linux/jump/Makefile    Thu Jul 14 09:29:36 1994
  1075. @@ -0,0 +1,45 @@
  1076. +IMAGE=        libisode
  1077. +VERSION=    8.0.1
  1078. +ADDRESS=    0x63d00000
  1079. +JUMPSIZE=    0x8000
  1080. +GOTSIZE=    0x2000
  1081. +
  1082. +
  1083. +all:        image stubs
  1084. +
  1085. +install:
  1086. +        ln -f libdsap.sa ../libdsap.a
  1087. +        ln -f libftam.sa ../libftam.a
  1088. +        ln -f libisode.sa ../libacsap.a
  1089. +        ln -f libisode.sa ../libcompat.a
  1090. +        ln -f libisode.sa ../libdirent.a
  1091. +        ln -f libisode.sa ../libisode.a
  1092. +        ln -f libisode.sa ../libpepsy.a
  1093. +        ln -f libisode.sa ../libpepy.a
  1094. +        ln -f libisode.sa ../libpsap.a
  1095. +        ln -f libisode.sa ../libpsap2.a
  1096. +        ln -f libisode.sa ../libronot.a
  1097. +        ln -f libisode.sa ../librosap.a
  1098. +        ln -f libisode.sa ../librosy.a
  1099. +        ln -f libisode.sa ../librtsap.a
  1100. +        ln -f libisode.sa ../libssap.a
  1101. +        ln -f libisode.sa ../libtsap.a
  1102. +
  1103. +image:
  1104. +        /usr/dll/bin/mkimage -l $(IMAGE) -v $(VERSION) \
  1105. +            -a $(ADDRESS) -j $(JUMPSIZE) -g $(GOTSIZE) \
  1106. +            -- \
  1107. +            libftam.a libpepsy.a libpepy.a \
  1108. +            libx500as.a libdsap.a libacsap.a libcommon.a libnet.a \
  1109. +            librosy.a libronot.a librosap.a \
  1110. +            libpsap2.a libpsap.a \
  1111. +            librtsap.a libssap.a libtsap.a \
  1112. +            libcompat.a libdirent.a \
  1113. +            libisode.a \
  1114. +            -lcurses -ltermcap -ldbm -lc -lm `gcc --print` -lc
  1115. +
  1116. +stubs:
  1117. +        /usr/dll/bin/mkstubs -l $(IMAGE) -v $(VERSION) \
  1118. +            -a $(ADDRESS) -j $(JUMPSIZE) -g $(GOTSIZE) \
  1119. +            -- \
  1120. +            libisode libdsap libftam
  1121. diff -u --recursive --new-file isode-8.0/jump/jump.funcs isode-8.0-linux/jump/jump.funcs
  1122. --- isode-8.0/jump/jump.funcs    Thu Jan  1 01:00:00 1970
  1123. +++ isode-8.0-linux/jump/jump.funcs    Fri Dec  3 13:28:19 1993
  1124. @@ -0,0 +1,1447 @@
  1125. +00000000 T _PRyStub             libisode       p-rystub
  1126. +00000000 T _PRyDiscard          libisode       p-rydiscard
  1127. +00000000 T _PRyOperation        libisode       p-ryoper
  1128. +00000000 T _PRyOpInvoke         libisode       p-ryopinvoke
  1129. +00000000 T _PRyGenID            libisode       p-rygenid
  1130. +00000000 T _PRyDispatch         libisode       p-rydispatch
  1131. +00000000 T _PRyDsResult         libisode       p-rydsresult
  1132. +00000000 T _PRyDsError          libisode       p-rydserror
  1133. +00000000 T _PRyDsUReject        libisode       p-rydsurej
  1134. +00000000 T _PRyWait             libisode       p-rywait
  1135. +00000000 T _PRyWaitAux          libisode       p-rywait
  1136. +00000000 T _Pnewopblk           libisode       p-ryopblock
  1137. +00000000 T _Pfreeopblk          libisode       p-ryopblock
  1138. +00000000 T _Pfindopblk          libisode       p-ryopblock
  1139. +00000000 T _Pfirstopblk         libisode       p-ryopblock
  1140. +00000000 T _Ploseopblk          libisode       p-ryopblock
  1141. +00000000 T _Pnewdsblk           libisode       p-rydsblock
  1142. +00000000 T _Pfreedsblk          libisode       p-rydsblock
  1143. +00000000 T _Pfinddsblk          libisode       p-rydsblock
  1144. +00000000 T _Plosedsblk          libisode       p-rydsblock
  1145. +00000000 T _Pfindopbyop         libisode       p-ryfind
  1146. +00000000 T _Pfindopbyname       libisode       p-ryfind
  1147. +00000000 T _Pfinderrbyerr       libisode       p-ryfind
  1148. +00000000 T _Pfinderrbyname      libisode       p-ryfind
  1149. +00000000 T _PRyLose             libisode       p-rylose
  1150. +00000000 T _RyStub              libisode       rystub
  1151. +00000000 T _RyDiscard           libisode       rydiscard
  1152. +00000000 T _RyOperation         libisode       ryoper
  1153. +00000000 T _RyOpInvoke          libisode       ryopinvoke
  1154. +00000000 T _RyGenID             libisode       rygenid
  1155. +00000000 T _RyDispatch          libisode       rydispatch
  1156. +00000000 T _RyDsResult          libisode       rydsresult
  1157. +00000000 T _RyDsError           libisode       rydserror
  1158. +00000000 T _RyDsUReject         libisode       rydsurej
  1159. +00000000 T _RyWait              libisode       rywait
  1160. +00000000 T _RyWaitAux           libisode       rywait
  1161. +00000000 T _newopblk            libisode       ryopblock
  1162. +00000000 T _freeopblk           libisode       ryopblock
  1163. +00000000 T _findopblk           libisode       ryopblock
  1164. +00000000 T _firstopblk          libisode       ryopblock
  1165. +00000000 T _loseopblk           libisode       ryopblock
  1166. +00000000 T _newdsblk            libisode       rydsblock
  1167. +00000000 T _freedsblk           libisode       rydsblock
  1168. +00000000 T _finddsblk           libisode       rydsblock
  1169. +00000000 T _losedsblk           libisode       rydsblock
  1170. +00000000 T _findopbyop          libisode       ryfind
  1171. +00000000 T _findopbyname        libisode       ryfind
  1172. +00000000 T _finderrbyerr        libisode       ryfind
  1173. +00000000 T _finderrbyname       libisode       ryfind
  1174. +00000000 T _RyLose              libisode       rylose
  1175. +00000000 T _RoAsynBindRequest   libisode       ronotbind1
  1176. +00000000 T _RoAsynBindRetry     libisode       ronotbind1
  1177. +00000000 T _ParseRoBindResponse libisode       ronotbind1
  1178. +00000000 T _RoBindInit          libisode       ronotbind2
  1179. +00000000 T _ParseRoBindArgument libisode       ronotbind2
  1180. +00000000 T _RoBindResult        libisode       ronotbind2
  1181. +00000000 T _RoBindError         libisode       ronotbind2
  1182. +00000000 T _RoBindReject        libisode       ronotbind2
  1183. +00000000 T _RoUnBindRequest     libisode       ronotunbind1
  1184. +00000000 T _RoUnBindRetry       libisode       ronotunbind1
  1185. +00000000 T _ParseRoUnBindResponse libisode       ronotunbind1
  1186. +00000000 T _RoUnBindInit        libisode       ronotunbind2
  1187. +00000000 T _RoUnBindResult      libisode       ronotunbind2
  1188. +00000000 T _RoUnBindError       libisode       ronotunbind2
  1189. +00000000 T _RoUnBindReject      libisode       ronotunbind2
  1190. +00000000 T _RoBindUAbort        libisode       ronotabort
  1191. +00000000 T _ronotlose           libisode       ronotlose
  1192. +00000000 T _acs2ronotlose       libisode       ronotlose
  1193. +00000000 T _RoErrString         libisode       rosaperror
  1194. +00000000 T _RoInvokeRequest     libisode       rosapinvoke
  1195. +00000000 T _RoResultRequest     libisode       rosapresult
  1196. +00000000 T _RoErrorRequest      libisode       rosapuerror
  1197. +00000000 T _RoURejectRequest    libisode       rosapureject
  1198. +00000000 T _RoURejectRequestAux libisode       rosapureject
  1199. +00000000 T _RoIntrRequest       libisode       rosapintr
  1200. +00000000 T _RoWaitRequest       libisode       rosapwait
  1201. +00000000 T _RoSetService        libisode       rosapservice
  1202. +00000000 T _acb2osdu            libisode       rosapapdu
  1203. +00000000 T _RoSetIndications    libisode       rosapasync
  1204. +00000000 T _RoSelectMask        libisode       rosapselect
  1205. +00000000 T _ropktlose           libisode       rosaplose
  1206. +00000000 T _rosapreject         libisode       rosaplose
  1207. +00000000 T _rosaplose           libisode       rosaplose
  1208. +00000000 T _RoRtService         libisode       ro2rts
  1209. +00000000 T _ro2rtsasync         libisode       ro2rts
  1210. +00000000 T _ro2rtsmask          libisode       ro2rts
  1211. +00000000 T _ro2rtswait          libisode       ro2rts
  1212. +00000000 T _ro2rtswrite         libisode       ro2rts
  1213. +00000000 T _ro2rtsready         libisode       ro2rts
  1214. +00000000 T _RoPService          libisode       ro2ps
  1215. +00000000 T _ro2psasync          libisode       ro2ps
  1216. +00000000 T _ro2psmask           libisode       ro2ps
  1217. +00000000 T _ro2pswait           libisode       ro2ps
  1218. +00000000 T _ro2pswrite          libisode       ro2ps
  1219. +00000000 T _RoExec              libisode       ro2ssexec
  1220. +00000000 T _RoInit              libisode       ro2ssrespond
  1221. +00000000 T _RoBeginResponse     libisode       ro2ssrespond
  1222. +00000000 T _RoBeginRequest      libisode       ro2ssinitiat
  1223. +00000000 T _RoEndRequest        libisode       ro2ssreleas1
  1224. +00000000 T _RoEndResponse       libisode       ro2ssreleas2
  1225. +00000000 T _RoSService          libisode       ro2ss
  1226. +00000000 T _ro2ssasync          libisode       ro2ss
  1227. +00000000 T _ro2ssmask           libisode       ro2ss
  1228. +00000000 T _ro2sslose           libisode       ro2ss
  1229. +00000000 T _ro2sswait           libisode       ro2ss
  1230. +00000000 T _ro2ssready          libisode       ro2ss
  1231. +00000000 T _ro2sswrite          libisode       ro2ss
  1232. +00000000 T _ss2rosabort         libisode       ro2ss
  1233. +00000000 T _ss2roslose          libisode       ro2ss
  1234. +00000000 T _RoSetThorn          libisode       ro2ssthorn
  1235. +00000000 T _RtErrString         libisode       rtsaperror
  1236. +00000000 T _RtPTurnRequest      libisode       rtsappturn
  1237. +00000000 T _RtGTurnRequest      libisode       rtsapgturn
  1238. +00000000 T _RtTransferRequest   libisode       rtsaptrans
  1239. +00000000 T _RtWaitRequest       libisode       rtsapwait
  1240. +00000000 T _RtWaitRequestAux    libisode       rtsapwait
  1241. +00000000 T _RtSetIndications    libisode       rtsapasync
  1242. +00000000 T _RtSelectMask        libisode       rtsapselect
  1243. +00000000 T _rtpktlose           libisode       rtsaplose
  1244. +00000000 T _rtsaplose           libisode       rtsaplose
  1245. +00000000 T _RtSetDownTrans      libisode       rtsapdtrans
  1246. +00000000 T _RtSetUpTrans        libisode       rtsaputrans
  1247. +00000000 T _RtInit_Aux          libisode       rt2psrespond
  1248. +00000000 T _RtOpenResponse      libisode       rt2psrespond
  1249. +00000000 T _RtOpenRequest2      libisode       rt2psinitiat
  1250. +00000000 T _RtUAbortRequest     libisode       rt2psabort
  1251. +00000000 T _RtCloseRequest      libisode       rt2psreleas1
  1252. +00000000 T _RtCloseResponse     libisode       rt2psreleas2
  1253. +00000000 T _rt2pspturn          libisode       rt2ps
  1254. +00000000 T _rt2psgturn          libisode       rt2ps
  1255. +00000000 T _rt2pstrans          libisode       rt2ps
  1256. +00000000 T _rt2pswait           libisode       rt2ps
  1257. +00000000 T _rt2psasync          libisode       rt2ps
  1258. +00000000 T _rt2psmask           libisode       rt2ps
  1259. +00000000 T _rt2pslose           libisode       rt2ps
  1260. +00000000 T _acs2rtslose         libisode       rt2ps
  1261. +00000000 T _acs2rtsabort        libisode       rt2ps
  1262. +00000000 T _ps2rtslose          libisode       rt2ps
  1263. +00000000 T _RtExec              libisode       rt2ssexec
  1264. +00000000 T _RtBInit             libisode       rt2ssrespond
  1265. +00000000 T _RtBeginResponse     libisode       rt2ssrespond
  1266. +00000000 T _RtBeginRequest2     libisode       rt2ssinitiat
  1267. +00000000 T _RtEndRequest        libisode       rt2ssreleas1
  1268. +00000000 T _RtEndResponse       libisode       rt2ssreleas2
  1269. +00000000 T _rt2sspturn          libisode       rt2ss
  1270. +00000000 T _rt2ssgturn          libisode       rt2ss
  1271. +00000000 T _rt2sstrans          libisode       rt2ss
  1272. +00000000 T _rt2sswait           libisode       rt2ss
  1273. +00000000 T _rt2ssasync          libisode       rt2ss
  1274. +00000000 T _rt2ssmask           libisode       rt2ss
  1275. +00000000 T _rt2sslose           libisode       rt2ss
  1276. +00000000 T _ss2rtsabort         libisode       rt2ss
  1277. +00000000 T _ss2rtslose          libisode       rt2ss
  1278. +00000000 T _ps2acslose          libisode       acsaprovider
  1279. +00000000 T _info2apdu           libisode       acsaprovider
  1280. +00000000 T _apdu2info           libisode       acsaprovider
  1281. +00000000 T _newacblk            libisode       acsapblock
  1282. +00000000 T _freeacblk           libisode       acsapblock
  1283. +00000000 T _findacblk           libisode       acsapblock
  1284. +00000000 T _AcErrString         libisode       acsaperror
  1285. +00000000 T _acpktlose           libisode       acsaplose
  1286. +00000000 T _acsaplose           libisode       acsaplose
  1287. +00000000 T _AcInit              libisode       acsaprespond
  1288. +00000000 T _AcAssocResponse     libisode       acsaprespond
  1289. +00000000 T _AcAsynAssocRequest  libisode       acsapinitiat
  1290. +00000000 T _AcAsynRetryRequest  libisode       acsapinitiat
  1291. +00000000 T _AcAsynNextRequest   libisode       acsapinitiat
  1292. +00000000 T _AcRelRequest        libisode       acsapreleas1
  1293. +00000000 T _AcRelRetryRequest   libisode       acsapreleas1
  1294. +00000000 T _AcRelResponse       libisode       acsapreleas2
  1295. +00000000 T _AcFINISHser         libisode       acsapreleas3
  1296. +00000000 T _AcUAbortRequest     libisode       acsapabort1
  1297. +00000000 T _AcABORTser          libisode       acsapabort2
  1298. +00000000 T _ps2acsabort         libisode       acsapabort2
  1299. +00000000 T _AcFindPCI           libisode       acsapfindpci
  1300. +00000000 T __str2aei            libisode       acsapaddr
  1301. +00000000 T _aei2addr            libisode       acsapaddr
  1302. +00000000 T _str2aei_dse         libisode       acsapdse
  1303. +00000000 T _aei2addr_dse        libisode       acsapdse
  1304. +00000000 T _name2value_dase     libisode       aetdase
  1305. +00000000 T _set_lookup_dase     libisode       aetdase
  1306. +00000000 T _alias2name          libisode       isoalias
  1307. +00000000 T _add_alias           libisode       isoalias
  1308. +00000000 T _str2aei_stub        libisode       acsapstub
  1309. +00000000 T _aei2addr_stub       libisode       acsapstub
  1310. +00000000 T _str2aet_seq         libisode       aetseq
  1311. +00000000 T _setisoentity        libisode       isoentity
  1312. +00000000 T _endisoentity        libisode       isoentity
  1313. +00000000 T _getisoentity        libisode       isoentity
  1314. +00000000 T __startisoentity     libisode       isoentity
  1315. +00000000 T __stopisoentity      libisode       isoentity
  1316. +00000000 T __printent           libisode       isoentity
  1317. +00000000 T _oid2aei             libisode       oid2aei
  1318. +00000000 T _sprintaei           libisode       sprintaei
  1319. +00000000 T _is2paddr            libisode       is2paddr
  1320. +00000000 T _is2saddr            libisode       is2saddr
  1321. +00000000 T _is2taddr            libisode       is2taddr
  1322. +00000000 T _isodeserver         libisode       acserver1
  1323. +00000000 T _iserver_init        libisode       acserver2
  1324. +00000000 T _iserver_init_aux    libisode       acserver2
  1325. +00000000 T _iserver_initAux     libisode       acserver2
  1326. +00000000 T _iserver_wait        libisode       acserver2
  1327. +00000000 T _iserver_mask        libisode       acserver2
  1328. +00000000 T _build_DSE_PSAPaddr  libisode       dse-c
  1329. +00000000 T _parse_DSE_PSAPaddr  libisode       dse-c
  1330. +00000000 T _PDataRequest        libisode       psaprovider
  1331. +00000000 T _PDataRequestAux     libisode       psaprovider
  1332. +00000000 T _PReadRequest        libisode       psaprovider
  1333. +00000000 T _ss2psabort          libisode       psaprovider
  1334. +00000000 T _PSetIndications     libisode       psaprovider
  1335. +00000000 T _ss2pslose           libisode       psaprovider
  1336. +00000000 T _newpblk             libisode       psaprovider
  1337. +00000000 T _freepblk            libisode       psaprovider
  1338. +00000000 T _findpblk            libisode       psaprovider
  1339. +00000000 T _info2ppdu           libisode       psaprovider
  1340. +00000000 T _ppdu2info           libisode       psaprovider
  1341. +00000000 T _info2ssdu           libisode       psaprovider
  1342. +00000000 T _ssdu2info           libisode       psaprovider
  1343. +00000000 T _qbuf2info           libisode       psaprovider
  1344. +00000000 T _info2qb             libisode       psaprovider
  1345. +00000000 T _qb2info             libisode       psaprovider
  1346. +00000000 T _silly_list          libisode       psaprovider
  1347. +00000000 T _PErrString          libisode       psap2error
  1348. +00000000 T _PExec               libisode       psapexec
  1349. +00000000 T _PInit               libisode       psaprespond
  1350. +00000000 T _PConnResponse       libisode       psaprespond
  1351. +00000000 T _PAsynConnRequest    libisode       psapinitiate
  1352. +00000000 T _PAsynRetryRequest   libisode       psapinitiate
  1353. +00000000 T _PAsynNextRequest    libisode       psapinitiate
  1354. +00000000 T _PGTokenRequest      libisode       psaptoken
  1355. +00000000 T _PPTokenRequest      libisode       psaptoken
  1356. +00000000 T _PGControlRequest    libisode       psapactivity
  1357. +00000000 T _PActStartRequest    libisode       psapactivity
  1358. +00000000 T _PActResumeRequest   libisode       psapactivity
  1359. +00000000 T _PActIntrRequestAux  libisode       psapactivity
  1360. +00000000 T _PActIntrResponseAux libisode       psapactivity
  1361. +00000000 T _PMajSyncRequestAux  libisode       psapmajor1
  1362. +00000000 T _PMajSyncResponseAux libisode       psapmajor2
  1363. +00000000 T _PMinSyncRequest     libisode       psapminor1
  1364. +00000000 T _PMinSyncResponse    libisode       psapminor2
  1365. +00000000 T _PReSyncRequest      libisode       psapresync1
  1366. +00000000 T _PReSyncResponse     libisode       psapresync2
  1367. +00000000 T _PUAbortRequest      libisode       psapabort
  1368. +00000000 T _PUReportRequest     libisode       psapreport
  1369. +00000000 T _PRelRequest         libisode       psaprelease1
  1370. +00000000 T _PRelRetryRequest    libisode       psaprelease1
  1371. +00000000 T _PRelResponse        libisode       psaprelease2
  1372. +00000000 T _PSelectMask         libisode       psapselect
  1373. +00000000 T _ppktlose            libisode       psaplose
  1374. +00000000 T _psaplose            libisode       psaplose
  1375. +00000000 T _build_UNIV_IA5String libisode       UPEPY-01
  1376. +00000000 T _parse_UNIV_IA5String libisode       UPEPY-02
  1377. +00000000 T _print_UNIV_IA5String libisode       UPEPY-03
  1378. +00000000 T _build_UNIV_NumericString libisode       UPEPY-04
  1379. +00000000 T _parse_UNIV_NumericString libisode       UPEPY-05
  1380. +00000000 T _print_UNIV_NumericString libisode       UPEPY-06
  1381. +00000000 T _build_UNIV_PrintableString libisode       UPEPY-07
  1382. +00000000 T _parse_UNIV_PrintableString libisode       UPEPY-08
  1383. +00000000 T _print_UNIV_PrintableString libisode       UPEPY-09
  1384. +00000000 T _build_UNIV_T61String libisode       UPEPY-10
  1385. +00000000 T _parse_UNIV_T61String libisode       UPEPY-11
  1386. +00000000 T _print_UNIV_T61String libisode       UPEPY-12
  1387. +00000000 T _build_UNIV_TeletexString libisode       UPEPY-13
  1388. +00000000 T _parse_UNIV_TeletexString libisode       UPEPY-14
  1389. +00000000 T _print_UNIV_TeletexString libisode       UPEPY-15
  1390. +00000000 T _build_UNIV_VideotexString libisode       UPEPY-16
  1391. +00000000 T _parse_UNIV_VideotexString libisode       UPEPY-17
  1392. +00000000 T _print_UNIV_VideotexString libisode       UPEPY-18
  1393. +00000000 T _build_UNIV_GeneralizedTime libisode       UPEPY-19
  1394. +00000000 T _parse_UNIV_GeneralizedTime libisode       UPEPY-20
  1395. +00000000 T _print_UNIV_GeneralizedTime libisode       UPEPY-21
  1396. +00000000 T _build_UNIV_GeneralisedTime libisode       UPEPY-22
  1397. +00000000 T _parse_UNIV_GeneralisedTime libisode       UPEPY-23
  1398. +00000000 T _print_UNIV_GeneralisedTime libisode       UPEPY-24
  1399. +00000000 T _build_UNIV_UTCTime  libisode       UPEPY-25
  1400. +00000000 T _parse_UNIV_UTCTime  libisode       UPEPY-26
  1401. +00000000 T _print_UNIV_UTCTime  libisode       UPEPY-27
  1402. +00000000 T _build_UNIV_UniversalTime libisode       UPEPY-28
  1403. +00000000 T _parse_UNIV_UniversalTime libisode       UPEPY-29
  1404. +00000000 T _print_UNIV_UniversalTime libisode       UPEPY-30
  1405. +00000000 T _build_UNIV_GraphicString libisode       UPEPY-31
  1406. +00000000 T _parse_UNIV_GraphicString libisode       UPEPY-32
  1407. +00000000 T _print_UNIV_GraphicString libisode       UPEPY-33
  1408. +00000000 T _build_UNIV_VisibleString libisode       UPEPY-34
  1409. +00000000 T _parse_UNIV_VisibleString libisode       UPEPY-35
  1410. +00000000 T _print_UNIV_VisibleString libisode       UPEPY-36
  1411. +00000000 T _build_UNIV_ISO646String libisode       UPEPY-37
  1412. +00000000 T _parse_UNIV_ISO646String libisode       UPEPY-38
  1413. +00000000 T _print_UNIV_ISO646String libisode       UPEPY-39
  1414. +00000000 T _build_UNIV_GeneralString libisode       UPEPY-40
  1415. +00000000 T _parse_UNIV_GeneralString libisode       UPEPY-41
  1416. +00000000 T _print_UNIV_GeneralString libisode       UPEPY-42
  1417. +00000000 T _build_UNIV_CharacterString libisode       UPEPY-43
  1418. +00000000 T _parse_UNIV_CharacterString libisode       UPEPY-44
  1419. +00000000 T _print_UNIV_CharacterString libisode       UPEPY-45
  1420. +00000000 T _build_UNIV_EXTERNAL libisode       UPEPY-46
  1421. +00000000 T _parse_UNIV_EXTERNAL libisode       UPEPY-47
  1422. +00000000 T _print_UNIV_EXTERNAL libisode       UPEPY-48
  1423. +00000000 T _build_UNIV_ObjectDescriptor libisode       UPEPY-49
  1424. +00000000 T _parse_UNIV_ObjectDescriptor libisode       UPEPY-50
  1425. +00000000 T _print_UNIV_ObjectDescriptor libisode       UPEPY-51
  1426. +00000000 T _encode_UNIV_IA5String libisode       VPEPY-01
  1427. +00000000 T _encode_UNIV_NumericString libisode       VPEPY-02
  1428. +00000000 T _encode_UNIV_PrintableString libisode       VPEPY-03
  1429. +00000000 T _encode_UNIV_T61String libisode       VPEPY-04
  1430. +00000000 T _encode_UNIV_TeletexString libisode       VPEPY-05
  1431. +00000000 T _encode_UNIV_VideotexString libisode       VPEPY-06
  1432. +00000000 T _encode_UNIV_GeneralizedTime libisode       VPEPY-07
  1433. +00000000 T _encode_UNIV_GeneralisedTime libisode       VPEPY-08
  1434. +00000000 T _encode_UNIV_UTCTime libisode       VPEPY-09
  1435. +00000000 T _encode_UNIV_UniversalTime libisode       VPEPY-10
  1436. +00000000 T _encode_UNIV_GraphicString libisode       VPEPY-11
  1437. +00000000 T _encode_UNIV_VisibleString libisode       VPEPY-12
  1438. +00000000 T _encode_UNIV_ISO646String libisode       VPEPY-13
  1439. +00000000 T _encode_UNIV_GeneralString libisode       VPEPY-14
  1440. +00000000 T _encode_UNIV_CharacterString libisode       VPEPY-15
  1441. +00000000 T _encode_UNIV_EXTERNAL libisode       VPEPY-16
  1442. +00000000 T _encode_UNIV_ObjectDescriptor libisode       VPEPY-17
  1443. +00000000 T _decode_UNIV_IA5String libisode       VPEPY-18
  1444. +00000000 T _decode_UNIV_NumericString libisode       VPEPY-19
  1445. +00000000 T _decode_UNIV_PrintableString libisode       VPEPY-20
  1446. +00000000 T _decode_UNIV_T61String libisode       VPEPY-21
  1447. +00000000 T _decode_UNIV_TeletexString libisode       VPEPY-22
  1448. +00000000 T _decode_UNIV_VideotexString libisode       VPEPY-23
  1449. +00000000 T _decode_UNIV_GeneralizedTime libisode       VPEPY-24
  1450. +00000000 T _decode_UNIV_GeneralisedTime libisode       VPEPY-25
  1451. +00000000 T _decode_UNIV_UTCTime libisode       VPEPY-26
  1452. +00000000 T _decode_UNIV_UniversalTime libisode       VPEPY-27
  1453. +00000000 T _decode_UNIV_GraphicString libisode       VPEPY-28
  1454. +00000000 T _decode_UNIV_VisibleString libisode       VPEPY-29
  1455. +00000000 T _decode_UNIV_ISO646String libisode       VPEPY-30
  1456. +00000000 T _decode_UNIV_GeneralString libisode       VPEPY-31
  1457. +00000000 T _decode_UNIV_CharacterString libisode       VPEPY-32
  1458. +00000000 T _decode_UNIV_EXTERNAL libisode       VPEPY-33
  1459. +00000000 T _decode_UNIV_ObjectDescriptor libisode       VPEPY-34
  1460. +00000000 T _free_UNIV_EXTERNAL  libisode       VPEPY-35
  1461. +00000000 T _PY_pp               libisode       py_pp
  1462. +00000000 T _testdebug           libisode       testdebug
  1463. +00000000 T _enc_f               libisode       enc
  1464. +00000000 T _dec_f               libisode       dec
  1465. +00000000 T _fre_obj             libisode       fre
  1466. +00000000 T _fre_type            libisode       fre
  1467. +00000000 T _callsfn             libisode       fre
  1468. +00000000 T _prnt_f              libisode       prnt
  1469. +00000000 T _next_ptpe           libisode       prnt
  1470. +00000000 T _p_ismatch           libisode       prnt
  1471. +00000000 T _p_setpresent        libisode       prnt
  1472. +00000000 T _printable           libisode       prnt
  1473. +00000000 T _dmp_ptpe            libisode       prnt
  1474. +00000000 T _pepsylose           libisode       util
  1475. +00000000 T _ppepsylose          libisode       util
  1476. +00000000 T _ferr                libisode       util
  1477. +00000000 T _ferrd               libisode       util
  1478. +00000000 T _dmp_tpe             libisode       util
  1479. +00000000 T _pr_petype           libisode       util
  1480. +00000000 T _pr_entry            libisode       util
  1481. +00000000 T _f_null              libisode       util
  1482. +00000000 T _bitscmp             libisode       util
  1483. +00000000 T _ostrcmp             libisode       util
  1484. +00000000 T _hasdata             libisode       util
  1485. +00000000 T _same                libisode       util
  1486. +00000000 T _next_tpe            libisode       util
  1487. +00000000 T _ismatch             libisode       util
  1488. +00000000 T _fdflt_f             libisode       util
  1489. +00000000 T _fdflt_b             libisode       util
  1490. +00000000 T _vpush               libisode       vprint
  1491. +00000000 T _vpop                libisode       vprint
  1492. +00000000 T _vname               libisode       vprint
  1493. +00000000 T _vtag                libisode       vprint
  1494. +00000000 T _vprint              libisode       vprint
  1495. +00000000 T _vstring             libisode       vprint
  1496. +00000000 T _bit2str             libisode       vprint
  1497. +00000000 T _vunknown            libisode       vprint
  1498. +00000000 T _vpushfp             libisode       vprint
  1499. +00000000 T _vsetfp              libisode       vprint
  1500. +00000000 T _vpopfp              libisode       vprint
  1501. +00000000 T _vpushstr            libisode       vprint
  1502. +00000000 T _vpopstr             libisode       vprint
  1503. +00000000 T _vpushpp             libisode       vprint
  1504. +00000000 T _vpopp               libisode       vprint
  1505. +00000000 T _vpushquipu          libisode       vprint
  1506. +00000000 T _vpopquipu           libisode       vprint
  1507. +00000000 T _pvpdu               libisode       vprint
  1508. +00000000 T __vpdu               libisode       vprint
  1509. +00000000 T _PY_advise           libisode       py_advise
  1510. +00000000 T _addr2ref            libisode       addr2ref
  1511. +00000000 T _bit2prim            libisode       bit2prim
  1512. +00000000 T _bitstr2strb         libisode       bitstr2strb
  1513. +00000000 T _bit_on              libisode       bit_ops
  1514. +00000000 T _bit_off             libisode       bit_ops
  1515. +00000000 T _bit_test            libisode       bit_ops
  1516. +00000000 T _dg_open             libisode       dg2ps
  1517. +00000000 T _dg_setup            libisode       dg2ps
  1518. +00000000 T _fdx_open            libisode       fdx2ps
  1519. +00000000 T _fdx_setup           libisode       fdx2ps
  1520. +00000000 T _fdx_reset           libisode       fdx2ps
  1521. +00000000 T _flag2prim           libisode       flag2prim
  1522. +00000000 T _gtime               libisode       gtime
  1523. +00000000 T _int2strb            libisode       int2strb
  1524. +00000000 T _setisobject         libisode       isobject
  1525. +00000000 T _endisobject         libisode       isobject
  1526. +00000000 T _getisobject         libisode       isobject
  1527. +00000000 T _num2prim            libisode       num2prim
  1528. +00000000 T _obj2prim            libisode       obj2prim
  1529. +00000000 T _getisobjectbyname   libisode       objectbyname
  1530. +00000000 T _getisobjectbyoid    libisode       objectbyoid
  1531. +00000000 T _ode2oid             libisode       ode2oid
  1532. +00000000 T _oid_cmp             libisode       oid_cmp
  1533. +00000000 T _elem_cmp            libisode       oid_cmp
  1534. +00000000 T _oid_cpy             libisode       oid_cpy
  1535. +00000000 T _oid_free            libisode       oid_free
  1536. +00000000 T _oid2ode_aux         libisode       oid2ode
  1537. +00000000 T _pe2pl               libisode       pe2pl
  1538. +00000000 T _pe2ps_aux           libisode       pe2ps
  1539. +00000000 T _ps_write_id         libisode       pe2ps
  1540. +00000000 T _ps_write_len        libisode       pe2ps
  1541. +00000000 T _pe2qb_f             libisode       pe2qb_f
  1542. +00000000 T _pe2ssdu             libisode       pe2ssdu
  1543. +00000000 T _pe2text             libisode       pe2text
  1544. +00000000 T _pe2uvec             libisode       pe2uvec
  1545. +00000000 T _pe_alloc            libisode       pe_alloc
  1546. +00000000 T _pe_cmp              libisode       pe_cmp
  1547. +00000000 T _pe_cpy              libisode       pe_cpy
  1548. +00000000 T _pe_error            libisode       pe_error
  1549. +00000000 T _pe_expunge          libisode       pe_expunge
  1550. +00000000 T _pe_extract          libisode       pe_extract
  1551. +00000000 T _pe_free             libisode       pe_free
  1552. +00000000 T _pe_pullup           libisode       pe_pullup
  1553. +00000000 T _pl2pe               libisode       pl2pe
  1554. +00000000 T _prim2bit            libisode       prim2bit
  1555. +00000000 T _prim2flag           libisode       prim2flag
  1556. +00000000 T _prim2num            libisode       prim2num
  1557. +00000000 T _prim2oid            libisode       prim2oid
  1558. +00000000 T _prim2qb             libisode       prim2qb
  1559. +00000000 T _prim2real           libisode       prim2real
  1560. +00000000 T _prim2set            libisode       prim2set
  1561. +00000000 T _prim2str            libisode       prim2str
  1562. +00000000 T _prim2time           libisode       prim2time
  1563. +00000000 T _str2utct            libisode       prim2time
  1564. +00000000 T _str2gent            libisode       prim2time
  1565. +00000000 T _ps2pe_aux           libisode       ps2pe
  1566. +00000000 T _ps_read_id          libisode       ps2pe
  1567. +00000000 T _ps_read_len         libisode       ps2pe
  1568. +00000000 T _ps_read_cons        libisode       ps2pe
  1569. +00000000 T _ps_alloc            libisode       ps_alloc
  1570. +00000000 T _ps_error            libisode       ps_error
  1571. +00000000 T _ps_flush            libisode       ps_flush
  1572. +00000000 T _ps_free             libisode       ps_free
  1573. +00000000 T _ps_get_abs          libisode       ps_get_abs
  1574. +00000000 T _ps_io               libisode       ps_io
  1575. +00000000 T _ps_prime            libisode       ps_prime
  1576. +00000000 T _qb2pe               libisode       qb2pe
  1577. +00000000 T _qb2prim_aux         libisode       qb2prim
  1578. +00000000 T _qb2str              libisode       qb2str
  1579. +00000000 T _qb_free             libisode       qb_free
  1580. +00000000 T _qb_pullup           libisode       qb_pullup
  1581. +00000000 T _qbuf2pe             libisode       qbuf2pe
  1582. +00000000 T _qbuf2pe_f           libisode       qbuf2pe_f
  1583. +00000000 T _qbuf_open           libisode       qbuf2ps
  1584. +00000000 T _real2prim           libisode       real2prim
  1585. +00000000 T _seq_add             libisode       seq_add
  1586. +00000000 T _seq_addon           libisode       seq_addon
  1587. +00000000 T _seq_del             libisode       seq_del
  1588. +00000000 T _seq_find            libisode       seq_find
  1589. +00000000 T _set_add             libisode       set_add
  1590. +00000000 T _set_addon           libisode       set_addon
  1591. +00000000 T _set_del             libisode       set_del
  1592. +00000000 T _set_find            libisode       set_find
  1593. +00000000 T _sprintoid           libisode       sprintoid
  1594. +00000000 T _sprintref           libisode       sprintref
  1595. +00000000 T _ssdu2pe             libisode       ssdu2pe
  1596. +00000000 T _std_flush           libisode       std2ps
  1597. +00000000 T _std_open            libisode       std2ps
  1598. +00000000 T _str2oid             libisode       str2oid
  1599. +00000000 T _str2pe              libisode       str2pe
  1600. +00000000 T _str2prim            libisode       str2prim
  1601. +00000000 T _str_open            libisode       str2ps
  1602. +00000000 T _str_setup           libisode       str2ps
  1603. +00000000 T _str2qb              libisode       str2qb
  1604. +00000000 T _strb2bitstr         libisode       strb2bitstr
  1605. +00000000 T _strb2int            libisode       strb2int
  1606. +00000000 T _time2prim           libisode       time2prim
  1607. +00000000 T _time2str            libisode       time2str
  1608. +00000000 T _tm2ut               libisode       tm2ut
  1609. +00000000 T _ts_read             libisode       ts2ps
  1610. +00000000 T _ts_write            libisode       ts2ps
  1611. +00000000 T _ut2tm               libisode       ut2tm
  1612. +00000000 T _uvec_open           libisode       uvec2ps
  1613. +00000000 T _uvec_setup          libisode       uvec2ps
  1614. +00000000 T _ps_get_plen         libisode       uvec2ps
  1615. +00000000 T _SDataRequest        libisode       ssaprovider
  1616. +00000000 T _SSendRequest        libisode       ssaprovider
  1617. +00000000 T _SWriteRequest       libisode       ssaprovider
  1618. +00000000 T _SDataRequestAux     libisode       ssaprovider
  1619. +00000000 T _SReadRequest        libisode       ssaprovider
  1620. +00000000 T _SDoCollideAux       libisode       ssaprovider
  1621. +00000000 T _SSetIndications     libisode       ssaprovider
  1622. +00000000 T _spkt2sd             libisode       ssaprovider
  1623. +00000000 T _sb2spkt             libisode       ssaprovider
  1624. +00000000 T _ts2sslose           libisode       ssaprovider
  1625. +00000000 T _newsblk             libisode       ssaprovider
  1626. +00000000 T _freesblk            libisode       ssaprovider
  1627. +00000000 T _findsblk            libisode       ssaprovider
  1628. +00000000 T _SErrString          libisode       ssaperror
  1629. +00000000 T _spkt2str            libisode       str2spkt
  1630. +00000000 T _str2spkt            libisode       str2spkt
  1631. +00000000 T _spkt2text           libisode       text2spkt
  1632. +00000000 T _text2spkt           libisode       text2spkt
  1633. +00000000 T _spkt2tsdu           libisode       tsdu2spkt
  1634. +00000000 T _tsdu2spkt           libisode       tsdu2spkt
  1635. +00000000 T _newspkt             libisode       tsdu2spkt
  1636. +00000000 T _freespkt            libisode       tsdu2spkt
  1637. +00000000 T _SExec               libisode       ssapexec
  1638. +00000000 T _SInit               libisode       ssaprespond
  1639. +00000000 T _SConnResponse       libisode       ssaprespond
  1640. +00000000 T _SAsynConnRequest    libisode       ssapinitiate
  1641. +00000000 T _SAsynRetryRequest   libisode       ssapinitiate
  1642. +00000000 T _SAsynNextRequest    libisode       ssapinitiate
  1643. +00000000 T _SExpdRequest        libisode       ssapexpd
  1644. +00000000 T _STypedRequest       libisode       ssaptyped
  1645. +00000000 T _SCapdRequest        libisode       ssapcapd1
  1646. +00000000 T _SCapdResponse       libisode       ssapcapd2
  1647. +00000000 T _SGTokenRequest      libisode       ssaptoken
  1648. +00000000 T _SPTokenRequest      libisode       ssaptoken
  1649. +00000000 T _SGControlRequest    libisode       ssapactivity
  1650. +00000000 T _SActStartRequest    libisode       ssapactivity
  1651. +00000000 T _SActResumeRequest   libisode       ssapactivity
  1652. +00000000 T _SActIntrRequest     libisode       ssapactivity
  1653. +00000000 T _SActIntrResponse    libisode       ssapactivity
  1654. +00000000 T _SActDiscRequest     libisode       ssapactivity
  1655. +00000000 T _SActDiscResponse    libisode       ssapactivity
  1656. +00000000 T _SActEndRequest      libisode       ssapactivity
  1657. +00000000 T _SActEndResponse     libisode       ssapactivity
  1658. +00000000 T _SMajSyncRequest     libisode       ssapmajor1
  1659. +00000000 T _SMajSyncRequestAux  libisode       ssapmajor1
  1660. +00000000 T _SMajSyncResponse    libisode       ssapmajor2
  1661. +00000000 T _SMajSyncResponseAux libisode       ssapmajor2
  1662. +00000000 T _SMinSyncRequest     libisode       ssapminor1
  1663. +00000000 T _SMinSyncResponse    libisode       ssapminor2
  1664. +00000000 T _SReSyncRequest      libisode       ssapresync1
  1665. +00000000 T _SReSyncResponse     libisode       ssapresync2
  1666. +00000000 T _SUAbortRequest      libisode       ssapabort
  1667. +00000000 T _SUReportRequest     libisode       ssapreport
  1668. +00000000 T _SRelRequest         libisode       ssaprelease1
  1669. +00000000 T _SRelRetryRequest    libisode       ssaprelease1
  1670. +00000000 T _SRelResponse        libisode       ssaprelease2
  1671. +00000000 T _SWriteRequestAux    libisode       ssapwrite
  1672. +00000000 T _SDoActivityAux      libisode       ssapactchk
  1673. +00000000 T _SSelectMask         libisode       ssapselect
  1674. +00000000 T _spktlose            libisode       ssaplose
  1675. +00000000 T _ssaplose            libisode       ssaplose
  1676. +00000000 T _TDataRequest        libisode       tsaprovider
  1677. +00000000 T _TExpdRequest        libisode       tsaprovider
  1678. +00000000 T _TWriteRequest       libisode       tsaprovider
  1679. +00000000 T _TReadRequest        libisode       tsaprovider
  1680. +00000000 T _TDiscRequest        libisode       tsaprovider
  1681. +00000000 T _TSetIndications     libisode       tsaprovider
  1682. +00000000 T _TSelectMask         libisode       tsaprovider
  1683. +00000000 T _newtblk             libisode       tsaprovider
  1684. +00000000 T _freetblk            libisode       tsaprovider
  1685. +00000000 T _findtblk            libisode       tsaprovider
  1686. +00000000 T _copyTSAPaddrX       libisode       tsaprovider
  1687. +00000000 T _copyTSAPaddrY       libisode       tsaprovider
  1688. +00000000 T _TErrString          libisode       tsaperror
  1689. +00000000 T _TSaveState          libisode       tsapstate
  1690. +00000000 T _TRestoreState       libisode       tsapstate
  1691. +00000000 T _fd2tpkt             libisode       fd2tpkt
  1692. +00000000 T _tpkt2fd             libisode       fd2tpkt
  1693. +00000000 T _newtpkt             libisode       fd2tpkt
  1694. +00000000 T _freetpkt            libisode       fd2tpkt
  1695. +00000000 T _tpkt2str            libisode       str2tpkt
  1696. +00000000 T _str2tpkt            libisode       str2tpkt
  1697. +00000000 T _tpkt2text           libisode       text2tpkt
  1698. +00000000 T _text2tpkt           libisode       text2tpkt
  1699. +00000000 T _TInit               libisode       tsaprespond
  1700. +00000000 T _TConnResponse       libisode       tsaprespond
  1701. +00000000 T _TAsynConnRequest    libisode       tsapinitiate
  1702. +00000000 T _TAsynRetryRequest   libisode       tsapinitiate
  1703. +00000000 T _TAsynNextRequest    libisode       tsapinitiate
  1704. +00000000 T _ta2norm             libisode       tsapinitiate
  1705. +00000000 T _tpktlose            libisode       tsaplose
  1706. +00000000 T _tsaplose            libisode       tsaplose
  1707. +00000000 T _TNetListen          libisode       tsaplisten
  1708. +00000000 T _TNetListenAux       libisode       tsaplisten
  1709. +00000000 T _TNetUnique          libisode       tsaplisten
  1710. +00000000 T _TNetAcceptAux       libisode       tsaplisten
  1711. +00000000 T _TGetReadMask        libisode       tsaplisten
  1712. +00000000 T _TGetWriteMask       libisode       tsaplisten
  1713. +00000000 T _TNetCheck           libisode       tsaplisten
  1714. +00000000 T _TNetClose           libisode       tsaplisten
  1715. +00000000 T _TNetFork            libisode       tsaplisten
  1716. +00000000 T _TSetQueuesOK        libisode       tsaplisten
  1717. +00000000 T __tsapmgmt_stub      libisode       tsapmgmt
  1718. +00000000 T _TSelectOctets       libisode       tsapmisc
  1719. +00000000 T _TGetAddresses       libisode       tsapmisc
  1720. +00000000 T _tp0write            libisode       tp0ts
  1721. +00000000 T _tp0init             libisode       tp0ts
  1722. +00000000 T _tcpopen             libisode       ts2tcp
  1723. +00000000 T _tcpsave             libisode       ts2tcp
  1724. +00000000 T _tcprestore          libisode       ts2tcp
  1725. +00000000 T _TTService           libisode       ts2tcp
  1726. +00000000 T __ts2x25_stub        libisode       ts2x25
  1727. +00000000 T __ts2bsd_stub        libisode       ts2bsd
  1728. +00000000 T __ts2sunlink_stub    libisode       ts2sunlink
  1729. +00000000 T __ts2tli_stub        libisode       ts2tli
  1730. +00000000 T __ts2xti_stub        libisode       ts2xti
  1731. +00000000 T __closedir_stub      libisode       closedir
  1732. +00000000 T __getdents_stub      libisode       getdents
  1733. +00000000 T __opendir_stub       libisode       opendir
  1734. +00000000 T __readdir_stub       libisode       readdir
  1735. +00000000 T __rewinddir_stub     libisode       rewinddir
  1736. +00000000 T __seekdir_stub       libisode       seekdir
  1737. +00000000 T __telldir_stub       libisode       telldir
  1738. +00000000 T __getcwd             libisode       getcwd
  1739. +00000000 T __scandir_stub       libisode       scandir
  1740. +00000000 T __alphasort_stub     libisode       scandir
  1741. +00000000 T _ll_open             libisode       logger
  1742. +00000000 T _ll_close            libisode       logger
  1743. +00000000 T _ll_log              libisode       logger
  1744. +00000000 T __ll_log             libisode       logger
  1745. +00000000 T _ll_hdinit           libisode       logger
  1746. +00000000 T _ll_dbinit           libisode       logger
  1747. +00000000 T _ll_printf           libisode       logger
  1748. +00000000 T _ll_sync             libisode       logger
  1749. +00000000 T _ll_preset           libisode       logger
  1750. +00000000 T _ll_check            libisode       logger
  1751. +00000000 T _ll_defmhdr          libisode       logger
  1752. +00000000 T _ll_setmhdr          libisode       logger
  1753. +00000000 T _selsocket           libisode       select
  1754. +00000000 T _set_check_fd        libisode       select
  1755. +00000000 T _xselect             libisode       select
  1756. +00000000 T _asprintf            libisode       asprintf
  1757. +00000000 T __asprintf           libisode       asprintf
  1758. +00000000 T _explode             libisode       explode
  1759. +00000000 T _implode             libisode       implode
  1760. +00000000 T __isodefile          libisode       isofiles
  1761. +00000000 T _getlocalhost        libisode       isohost
  1762. +00000000 T _sel2str             libisode       sel2str
  1763. +00000000 T _sys_errname         libisode       serror
  1764. +00000000 T _sprintb             libisode       sprintb
  1765. +00000000 T _str2elem            libisode       str2elem
  1766. +00000000 T _str2sel             libisode       str2sel
  1767. +00000000 T _str2vecX            libisode       str2vec
  1768. +00000000 T _isodesetailor       libisode       tailor
  1769. +00000000 T _isodetailor         libisode       tailor
  1770. +00000000 T _isodesetvar         libisode       tailor
  1771. +00000000 T _isodexport          libisode       tailor
  1772. +00000000 T _baduser             libisode       baduser
  1773. +00000000 T _chkpassword         libisode       chkpassword
  1774. +00000000 T _getpassword         libisode       getpassword
  1775. +00000000 T _cmd_srch            libisode       cmd_srch
  1776. +00000000 T _lexequ              libisode       lexequ
  1777. +00000000 T _lexnequ             libisode       lexnequ
  1778. +00000000 T _log_tai             libisode       log_tai
  1779. +00000000 T _rcmd_srch           libisode       rcmd_srch
  1780. +00000000 T _set_smalloc_handler libisode       smalloc
  1781. +00000000 T _smalloc             libisode       smalloc
  1782. +00000000 T _sstr2arg            libisode       sstr2arg
  1783. +00000000 T _strdup_stub         libisode       strdup
  1784. +00000000 T _setisoservent       libisode       isoservent
  1785. +00000000 T _endisoservent       libisode       isoservent
  1786. +00000000 T _getisoservent       libisode       isoservent
  1787. +00000000 T _getisoserventbyname libisode       servbyname
  1788. +00000000 T _getisoserventbyport libisode       servbyport
  1789. +00000000 T _getisoserventbyselector libisode       servbysel
  1790. +00000000 T _macro2str           libisode       isoaddrs
  1791. +00000000 T _str2paddr           libisode       isoaddrs
  1792. +00000000 T _macro2comm          libisode       isoaddrs
  1793. +00000000 T __paddr2str          libisode       isoaddrs
  1794. +00000000 T _str2saddr           libisode       str2saddr
  1795. +00000000 T _str2taddr           libisode       str2taddr
  1796. +00000000 T _saddr2str           libisode       saddr2str
  1797. +00000000 T _taddr2str           libisode       taddr2str
  1798. +00000000 T _na2norm             libisode       na2norm
  1799. +00000000 T _norm2na             libisode       norm2na
  1800. +00000000 T _na2str              libisode       na2str
  1801. +00000000 T _pa2str              libisode       pa2str
  1802. +00000000 T _nsap_addr_cmp       libisode       nsapcmp
  1803. +00000000 T _tsap_addr_cmp       libisode       nsapcmp
  1804. +00000000 T _ssap_addr_cmp       libisode       nsapcmp
  1805. +00000000 T _psap_addr_cmp       libisode       nsapcmp
  1806. +00000000 T _start_tcp_client    libisode       internet
  1807. +00000000 T _start_tcp_server    libisode       internet
  1808. +00000000 T _join_tcp_client     libisode       internet
  1809. +00000000 T _join_tcp_server     libisode       internet
  1810. +00000000 T _close_tcp_socket    libisode       internet
  1811. +00000000 T _gethostbystring     libisode       internet
  1812. +00000000 T _start_udp_server    libisode       dgram
  1813. +00000000 T _join_dgram_aux      libisode       dgram
  1814. +00000000 T _read_dgram_socket   libisode       dgram
  1815. +00000000 T _hack_dgram_socket   libisode       dgram
  1816. +00000000 T _write_dgram_socket  libisode       dgram
  1817. +00000000 T _close_dgram_socket  libisode       dgram
  1818. +00000000 T _select_dgram_socket libisode       dgram
  1819. +00000000 T _check_dgram_socket  libisode       dgram
  1820. +00000000 T __camtec_sunlink_stub libisode       camtec
  1821. +00000000 T __sunlink_stub       libisode       sunlink
  1822. +00000000 T __ubcx25_stub        libisode       ubcx25
  1823. +00000000 T __hpuxx25_stub       libisode       hpuxx25
  1824. +00000000 T __ultrix25_stub      libisode       ultrix25
  1825. +00000000 T __x25addr_stub       libisode       x25addr
  1826. +00000000 T _setisonsapsnpa      libisode       isonsapsnpa
  1827. +00000000 T _endisonsapsnpa      libisode       isonsapsnpa
  1828. +00000000 T _getisonsapsnpa      libisode       isonsapsnpa
  1829. +00000000 T _getisosnpa          libisode       isonsapsnpa
  1830. +00000000 T _getnsapinfo         libisode       isonsapsnpa
  1831. +00000000 T _char2bcd            libisode       char2bcd
  1832. +00000000 T _bcd2char            libisode       bcd2char
  1833. +00000000 T _grab_pe1            libdsap        IF_tables
  1834. +00000000 T _grab_pe2            libdsap        IF_tables
  1835. +00000000 T _grab_pe3            libdsap        IF_tables
  1836. +00000000 T _dec_av1             libdsap        IF_tables
  1837. +00000000 T _dec_at              libdsap        IF_tables
  1838. +00000000 T _free_at_dummy       libdsap        IF_tables
  1839. +00000000 T _encode_IF_AttributeType libdsap        IF_tables
  1840. +00000000 T _decode_IF_AttributeType libdsap        IF_tables
  1841. +00000000 T _encode_IF_AttributeValue libdsap        IF_tables
  1842. +00000000 T _decode_IF_AttributeValue libdsap        IF_tables
  1843. +00000000 T _encode_IF_DistinguishedName libdsap        IF_tables
  1844. +00000000 T _decode_IF_DistinguishedName libdsap        IF_tables
  1845. +00000000 T _encode_IF_Name      libdsap        IF_tables
  1846. +00000000 T _decode_IF_Name      libdsap        IF_tables
  1847. +00000000 T _enc_ipa             libdsap        DO_tables
  1848. +00000000 T _dec_ipa             libdsap        DO_tables
  1849. +00000000 T _fr_ipa              libdsap        DO_tables
  1850. +00000000 T _int2strb_alloc      libdsap        DAS_tables
  1851. +00000000 T _encode_DAS_TokenToSign libdsap        DAS_tables
  1852. +00000000 T _encode_DAS_ReadArgumentData libdsap        DAS_tables
  1853. +00000000 T _encode_DAS_CompareArgumentData libdsap        DAS_tables
  1854. +00000000 T _encode_DAS_ListArgumentData libdsap        DAS_tables
  1855. +00000000 T _encode_DAS_SearchArgumentData libdsap        DAS_tables
  1856. +00000000 T _encode_DAS_AddEntryArgumentData libdsap        DAS_tables
  1857. +00000000 T _encode_DAS_RemoveEntryArgumentData libdsap        DAS_tables
  1858. +00000000 T _encode_DAS_ModifyEntryArgumentData libdsap        DAS_tables
  1859. +00000000 T _encode_DAS_ModifyRDNArgumentData libdsap        DAS_tables
  1860. +00000000 T _substring_encode    libdsap        asn_ext
  1861. +00000000 T _substring_decode    libdsap        asn_ext
  1862. +00000000 T _substring_free      libdsap        asn_ext
  1863. +00000000 T _treestruct_encode   libdsap        asn_ext
  1864. +00000000 T _treestruct_decode   libdsap        asn_ext
  1865. +00000000 T _EDB_encode          libdsap        asn_ext
  1866. +00000000 T _EDB_decode_force    libdsap        asn_ext
  1867. +00000000 T _EDB_decode          libdsap        asn_ext
  1868. +00000000 T _EDB_free            libdsap        asn_ext
  1869. +00000000 T _acl_info_free       libdsap        acl
  1870. +00000000 T _acl_cmp             libdsap        acl
  1871. +00000000 T _acl_info_cmp        libdsap        acl
  1872. +00000000 T _acl_info_new        libdsap        acl
  1873. +00000000 T _acl_default         libdsap        acl
  1874. +00000000 T _get_default_acl     libdsap        acl
  1875. +00000000 T _set_default_acl     libdsap        acl
  1876. +00000000 T _test_acl_default    libdsap        acl
  1877. +00000000 T _acl_syntax          libdsap        acl
  1878. +00000000 T _add_attribute_syntax libdsap        attrv
  1879. +00000000 T _set_attribute_syntax libdsap        attrv
  1880. +00000000 T _set_av_pe_print     libdsap        attrv
  1881. +00000000 T _set_av_printer      libdsap        attrv
  1882. +00000000 T _modify_av_printer   libdsap        attrv
  1883. +00000000 T _split_attr          libdsap        attrv
  1884. +00000000 T _approxfn            libdsap        attrv
  1885. +00000000 T _syntax2str          libdsap        attrv
  1886. +00000000 T _str2syntax          libdsap        attrv
  1887. +00000000 T _get_syntax_table    libdsap        attrv
  1888. +00000000 T _AttrV_free          libdsap        attrv
  1889. +00000000 T _AttrV_free_aux      libdsap        attrv
  1890. +00000000 T _grab_pe             libdsap        attrv
  1891. +00000000 T _AttrV_decode        libdsap        attrv
  1892. +00000000 T _str_at2AttrV_aux    libdsap        attrv
  1893. +00000000 T _str_at2AttrV        libdsap        attrv
  1894. +00000000 T _str2AttrV           libdsap        attrv
  1895. +00000000 T _str2AttrV_aux       libdsap        attrv
  1896. +00000000 T _AttrV_cpy           libdsap        attrv
  1897. +00000000 T _AttrV_cpy_aux       libdsap        attrv
  1898. +00000000 T _AttrV_cpy_enc       libdsap        attrv
  1899. +00000000 T _rdn_cmp             libdsap        attrv
  1900. +00000000 T _rdn_cmp_reverse     libdsap        attrv
  1901. +00000000 T _AttrV_cmp           libdsap        attrv
  1902. +00000000 T _av_cmp_fn           libdsap        attrv
  1903. +00000000 T _AttrV_print         libdsap        attrv
  1904. +00000000 T _get_ca_ref          libdsap        ca
  1905. +00000000 T _cha_loopdetected    libdsap        ca
  1906. +00000000 T _ti_is_elem          libdsap        ca
  1907. +00000000 T _ti_cpy              libdsap        ca
  1908. +00000000 T _dn_seq_free         libdsap        dn_seq
  1909. +00000000 T _dn_seq_cpy          libdsap        dn_seq
  1910. +00000000 T _check_dnseq         libdsap        dn_seq
  1911. +00000000 T _dn_seq_cmp          libdsap        dn_seq
  1912. +00000000 T _check_dnseq_prefix  libdsap        dn_seq
  1913. +00000000 T _dn_seq_print        libdsap        dn_seq
  1914. +00000000 T _str2dnseq           libdsap        dn_seq
  1915. +00000000 T _dn_in_dnseq         libdsap        dn_seq
  1916. +00000000 T _dn_seq_push         libdsap        dn_seq
  1917. +00000000 T _dn_seq_pop          libdsap        dn_seq
  1918. +00000000 T _de_print            libdsap        ds_error
  1919. +00000000 T _ds_error            libdsap        ds_error
  1920. +00000000 T _log_ds_error        libdsap        ds_error
  1921. +00000000 T _ds_error_free       libdsap        ds_error
  1922. +00000000 T _ds_bind_error_aux   libdsap        ds_error
  1923. +00000000 T _ds_bind_error       libdsap        ds_error
  1924. +00000000 T _print_bind_error    libdsap        ds_error
  1925. +00000000 T _edbinfo_syntax      libdsap        dsa_info
  1926. +00000000 T _entryinfo_comp_free libdsap        entryinfo
  1927. +00000000 T _entryinfo_free      libdsap        entryinfo
  1928. +00000000 T _entryinfo_cpy       libdsap        entryinfo
  1929. +00000000 T _entryinfo_append    libdsap        entryinfo
  1930. +00000000 T _entryinfo_merge     libdsap        entryinfo
  1931. +00000000 T _entryinfo_print     libdsap        entryinfo
  1932. +00000000 T _filter_free         libdsap        filter
  1933. +00000000 T _filter_append       libdsap        filter
  1934. +00000000 T _strfilter           libdsap        filter
  1935. +00000000 T _ocfilter            libdsap        filter
  1936. +00000000 T _joinfilter          libdsap        filter
  1937. +00000000 T _fi_print            libdsap        filter
  1938. +00000000 T _print_filter        libdsap        filter
  1939. +00000000 T _load_oid_table      libdsap        oid
  1940. +00000000 T _add_entry_aux       libdsap        oid
  1941. +00000000 T _get_oid             libdsap        oid
  1942. +00000000 T _name2attr           libdsap        oid
  1943. +00000000 T _set_heap            libdsap        oid
  1944. +00000000 T _oid2attr            libdsap        oid
  1945. +00000000 T _name2oc             libdsap        oid
  1946. +00000000 T _oid2oc              libdsap        oid
  1947. +00000000 T _attr2name           libdsap        oid
  1948. +00000000 T _oc2name             libdsap        oid
  1949. +00000000 T _oid2name            libdsap        oid
  1950. +00000000 T _name2oid            libdsap        oid
  1951. +00000000 T _oid2pe              libdsap        oid
  1952. +00000000 T _oidprint            libdsap        oid
  1953. +00000000 T _dup_prim2oid        libdsap        oid
  1954. +00000000 T _free_oid_buckets    libdsap        oid
  1955. +00000000 T _oid_syntax          libdsap        oid
  1956. +00000000 T _want_oc_hierarchy   libdsap        oid2
  1957. +00000000 T _load_obj_hier       libdsap        oid2
  1958. +00000000 T _dumpalloid          libdsap        oid2
  1959. +00000000 T _add_oc_macro        libdsap        oid2
  1960. +00000000 T _table_seq_free      libdsap        oid2
  1961. +00000000 T _free_oid_table      libdsap        oid2
  1962. +00000000 T _oid_seq_free        libdsap        oidseq
  1963. +00000000 T _oid_seq_free_aux    libdsap        oidseq
  1964. +00000000 T _oid_seq_merge       libdsap        oidseq
  1965. +00000000 T _oid_seq_cmp         libdsap        oidseq
  1966. +00000000 T _oid_seq_cpy         libdsap        oidseq
  1967. +00000000 T _oid_seq_print       libdsap        oidseq
  1968. +00000000 T _str2oidseq          libdsap        oidseq
  1969. +00000000 T _oc_add              libdsap        oc
  1970. +00000000 T _str2oc              libdsap        oc
  1971. +00000000 T _add_oc_avs          libdsap        oc
  1972. +00000000 T _objectclass_cmp     libdsap        oc
  1973. +00000000 T _check_in_oc         libdsap        oc
  1974. +00000000 T _oc_print            libdsap        oc
  1975. +00000000 T _objectclass_syntax  libdsap        oc
  1976. +00000000 T _parse_error         libdsap        parse_error
  1977. +00000000 T _pe_print            libdsap        pe
  1978. +00000000 T _asn2pe              libdsap        pe
  1979. +00000000 T _show_picture        libdsap        picture
  1980. +00000000 T _exec_print          libdsap        picture
  1981. +00000000 T _hide_picture        libdsap        picture
  1982. +00000000 T _picture_print       libdsap        picture
  1983. +00000000 T _photo_syntax        libdsap        picture
  1984. +00000000 T _psap_free           libdsap        psap
  1985. +00000000 T _psap_cpy            libdsap        psap
  1986. +00000000 T _psap_dup            libdsap        psap
  1987. +00000000 T _psap_syntax         libdsap        psap
  1988. +00000000 T _tree_struct_free    libdsap        tree_struct
  1989. +00000000 T _schema_syntax       libdsap        tree_struct
  1990. +00000000 T _SkipSpace           libdsap        util
  1991. +00000000 T _StripSpace          libdsap        util
  1992. +00000000 T _StripSpace2         libdsap        util
  1993. +00000000 T _TidyString2         libdsap        util
  1994. +00000000 T _TidyString          libdsap        util
  1995. +00000000 T _test_prim_pe        libdsap        util
  1996. +00000000 T _ps_printf           libdsap        util
  1997. +00000000 T _fatal               libdsap        util
  1998. +00000000 T _pslog               libdsap        util
  1999. +00000000 T _stop_listeners      libdsap        util
  2000. +00000000 T _quipu_pe_cmp        libdsap        util
  2001. +00000000 T _acl_dflt            libdsap        util
  2002. +00000000 T _correlate_search_results libdsap        correlate
  2003. +00000000 T _merge_search_results libdsap        correlate
  2004. +00000000 T _search_result_free  libdsap        correlate
  2005. +00000000 T _standard_syntaxes   libdsap        std_sntx
  2006. +00000000 T _quipu_syntaxes      libdsap        quipu_sntx
  2007. +00000000 T _dflt_attr_file      libdsap        file_print
  2008. +00000000 T _fileattr_print      libdsap        file_print
  2009. +00000000 T _as_write_files      libdsap        file_print
  2010. +00000000 T _grab_filepe         libdsap        file_enc
  2011. +00000000 T _file_decode         libdsap        file_enc
  2012. +00000000 T _fileattr_cpy        libdsap        file_cpy
  2013. +00000000 T _file_cmp            libdsap        file_cpy
  2014. +00000000 T _str2file_aux        libdsap        file_str
  2015. +00000000 T _str2file            libdsap        file_str
  2016. +00000000 T _file_free           libdsap        file_str
  2017. +00000000 T _AttrT_cmp_old       libdsap        attrt_cmp
  2018. +00000000 T _AttrT_decode_aux    libdsap        attrt_dec
  2019. +00000000 T _AttrT_new           libdsap        attrt_new
  2020. +00000000 T _AttrT_cpy           libdsap        attrt_cpy
  2021. +00000000 T _AttrT_print         libdsap        attrt_print
  2022. +00000000 T _as_cmp_comp         libdsap        as_cmp
  2023. +00000000 T _as_cmp              libdsap        as_cmp
  2024. +00000000 T _as_comp_cpy         libdsap        as_cpy
  2025. +00000000 T _as_cpy              libdsap        as_cpy
  2026. +00000000 T _as_delnext          libdsap        as_del
  2027. +00000000 T _as_merge            libdsap        as_merge
  2028. +00000000 T _as_merge_aux        libdsap        as_merge
  2029. +00000000 T _as_fast_merge       libdsap        as_merge
  2030. +00000000 T _as_comp_new         libdsap        as_new
  2031. +00000000 T _as_comp_free        libdsap        as_free
  2032. +00000000 T _as_free             libdsap        as_free
  2033. +00000000 T _as_find_type        libdsap        as_find
  2034. +00000000 T _as_comp_print       libdsap        as_print
  2035. +00000000 T _as_print            libdsap        as_print
  2036. +00000000 T _str2as              libdsap        as_str
  2037. +00000000 T _as_combine          libdsap        as_str
  2038. +00000000 T _avs_cmp             libdsap        avs_cmp
  2039. +00000000 T _avs_comp_cpy        libdsap        avs_cpy
  2040. +00000000 T _avs_cpy             libdsap        avs_cpy
  2041. +00000000 T _avs_cpy_enc         libdsap        avs_cpy
  2042. +00000000 T _avs_delnext         libdsap        avs_del
  2043. +00000000 T _avs_merge           libdsap        avs_merge
  2044. +00000000 T _avs_fast_merge      libdsap        avs_merge
  2045. +00000000 T _avs_comp_fill       libdsap        avs_new
  2046. +00000000 T _avs_comp_new        libdsap        avs_new
  2047. +00000000 T _avs_comp_free       libdsap        avs_free
  2048. +00000000 T _avs_free            libdsap        avs_free
  2049. +00000000 T _avs_print           libdsap        avs_print
  2050. +00000000 T _avs_print_aux       libdsap        avs_print
  2051. +00000000 T _str2avs             libdsap        avs_str
  2052. +00000000 T _fast_str2avs        libdsap        avs_str
  2053. +00000000 T _dn_cmp              libdsap        dn_cmp
  2054. +00000000 T _dn_cmp_prefix       libdsap        dn_cmp
  2055. +00000000 T _dn_order_cmp        libdsap        dn_cmp
  2056. +00000000 T _dn_comp_cpy         libdsap        dn_cpy
  2057. +00000000 T _dn_cpy              libdsap        dn_cpy
  2058. +00000000 T _dn_append           libdsap        dn_append
  2059. +00000000 T _dn_comp_free        libdsap        dn_free
  2060. +00000000 T _dn_free             libdsap        dn_free
  2061. +00000000 T _dn_print            libdsap        dn_print
  2062. +00000000 T _dn_rfc_print        libdsap        dn_print
  2063. +00000000 T _ufn_dn_print        libdsap        dn_print
  2064. +00000000 T _ufn_dn_print_aux    libdsap        dn_print
  2065. +00000000 T _ufn_rdn_print       libdsap        dn_print
  2066. +00000000 T _dn2str              libdsap        dn_print
  2067. +00000000 T _dn2ufn              libdsap        dn_print
  2068. +00000000 T _dn2rfc              libdsap        dn_print
  2069. +00000000 T _str2dn              libdsap        dn_str
  2070. +00000000 T _str2dn_aux          libdsap        dn_str
  2071. +00000000 T _str2dnX             libdsap        dn_str
  2072. +00000000 T _dn_dec              libdsap        dn_str
  2073. +00000000 T _dn_enc              libdsap        dn_str
  2074. +00000000 T _dn_syntax           libdsap        dn_str
  2075. +00000000 T _dn_comp_new         libdsap        dn_new
  2076. +00000000 T _rdn_cmp_comp        libdsap        rdn_cmp
  2077. +00000000 T _rdn_comp_cpy        libdsap        rdn_cpy
  2078. +00000000 T _rdn_cpy             libdsap        rdn_cpy
  2079. +00000000 T _rdn_comp_new        libdsap        rdn_new
  2080. +00000000 T _rdn_comp_free       libdsap        rdn_free
  2081. +00000000 T _rdn_free            libdsap        rdn_free
  2082. +00000000 T _rdn_comp_print      libdsap        rdn_print
  2083. +00000000 T _rdn_print           libdsap        rdn_print
  2084. +00000000 T _str2rdn_aux         libdsap        rdn_str
  2085. +00000000 T _str2rdn             libdsap        rdn_str
  2086. +00000000 T _rdn_merge           libdsap        rdn_merge
  2087. +00000000 T _utcprint            libdsap        time
  2088. +00000000 T _time_syntax         libdsap        time
  2089. +00000000 T _integer_syntax      libdsap        integer
  2090. +00000000 T _boolean_syntax      libdsap        boolean
  2091. +00000000 T _iso8859print        libdsap        string
  2092. +00000000 T _r_octenc            libdsap        string
  2093. +00000000 T _check_3166          libdsap        string
  2094. +00000000 T _r_octsdec           libdsap        string
  2095. +00000000 T _check_print_string  libdsap        string
  2096. +00000000 T _r_octparse          libdsap        string
  2097. +00000000 T _octparse            libdsap        string
  2098. +00000000 T _prtparse            libdsap        string
  2099. +00000000 T _cryptstring         libdsap        string
  2100. +00000000 T _cryptparse          libdsap        string
  2101. +00000000 T _sfree               libdsap        string
  2102. +00000000 T _pstrcmp             libdsap        string
  2103. +00000000 T _passwdcmp           libdsap        string
  2104. +00000000 T _telcmp              libdsap        string
  2105. +00000000 T _telstrlen           libdsap        string
  2106. +00000000 T _telncmp             libdsap        string
  2107. +00000000 T _strprint            libdsap        string
  2108. +00000000 T _cryptprint          libdsap        string
  2109. +00000000 T _r_octprint          libdsap        string
  2110. +00000000 T _octprint            libdsap        string
  2111. +00000000 T _qb_cmp              libdsap        string
  2112. +00000000 T _nbcmp               libdsap        string
  2113. +00000000 T _qb_cpy              libdsap        string
  2114. +00000000 T _part_print          libdsap        string
  2115. +00000000 T _part_parse          libdsap        string
  2116. +00000000 T _case_exact_match    libdsap        string
  2117. +00000000 T _approx_string       libdsap        string
  2118. +00000000 T _sub_string          libdsap        string
  2119. +00000000 T _telephone_match     libdsap        string
  2120. +00000000 T _string_syntaxes     libdsap        string
  2121. +00000000 T _mailbox_syntax      libdsap        mailbox
  2122. +00000000 T _fax_syntax          libdsap        fax
  2123. +00000000 T _post_syntax         libdsap        post
  2124. +00000000 T _telex_syntax        libdsap        telex
  2125. +00000000 T _teletex_syntax      libdsap        teletex
  2126. +00000000 T _pref_deliv_syntax   libdsap        pdm
  2127. +00000000 T _guide_syntax        libdsap        guide
  2128. +00000000 T _first_word          libdsap        soundex
  2129. +00000000 T _next_word           libdsap        soundex
  2130. +00000000 T _soundex             libdsap        soundex
  2131. +00000000 T _soundex_cmp         libdsap        soundex
  2132. +00000000 T _soundex_match       libdsap        soundex
  2133. +00000000 T _dsap_tai            libdsap        sys_tai
  2134. +00000000 T _dsap_init           libdsap        sys_init
  2135. +00000000 T _dsap_tai_init       libdsap        tai_init
  2136. +00000000 T _tai_string          libdsap        tai_init
  2137. +00000000 T _tai_args            libdsap        tai_args
  2138. +00000000 T _cert_enc            libdsap        certificate
  2139. +00000000 T _cert_dec            libdsap        certificate
  2140. +00000000 T _alg_cpy             libdsap        certificate
  2141. +00000000 T _cert_cpy            libdsap        certificate
  2142. +00000000 T _cert_free           libdsap        certificate
  2143. +00000000 T _str2alg             libdsap        certificate
  2144. +00000000 T _str2encrypted       libdsap        certificate
  2145. +00000000 T _str2cert            libdsap        certificate
  2146. +00000000 T _print_algid         libdsap        certificate
  2147. +00000000 T _print_encrypted     libdsap        certificate
  2148. +00000000 T _printcert           libdsap        certificate
  2149. +00000000 T _cert_cmp            libdsap        certificate
  2150. +00000000 T _certificate_syntax  libdsap        certificate
  2151. +00000000 T _cpair_enc           libdsap        cpair
  2152. +00000000 T _cpair_dec           libdsap        cpair
  2153. +00000000 T _str2cpair           libdsap        cpair
  2154. +00000000 T _printcpair          libdsap        cpair
  2155. +00000000 T _cpair_cpy           libdsap        cpair
  2156. +00000000 T _cpair_cmp           libdsap        cpair
  2157. +00000000 T _cpair_free          libdsap        cpair
  2158. +00000000 T _certificate_pair_syntax libdsap        cpair
  2159. +00000000 T _hash2str            libdsap        protected
  2160. +00000000 T _hash_passwd         libdsap        protected
  2161. +00000000 T _check_guard         libdsap        protected
  2162. +00000000 T _protected_password_syntax libdsap        protected
  2163. +00000000 T _subord_cpy          libdsap        cache
  2164. +00000000 T _cache_list          libdsap        cache
  2165. +00000000 T _delete_list_cache   libdsap        cache
  2166. +00000000 T _find_list_cache     libdsap        cache
  2167. +00000000 T _free_all_list_cache libdsap        cache
  2168. +00000000 T _cache_entry         libdsap        cache
  2169. +00000000 T _delete_cache        libdsap        cache
  2170. +00000000 T _local_find_entry    libdsap        cache
  2171. +00000000 T _local_find_entry_aux libdsap        cache
  2172. +00000000 T _get_copy_dn         libdsap        cache
  2173. +00000000 T _unravel_attribute   libdsap        cache
  2174. +00000000 T _check_schema        libdsap        cache
  2175. +00000000 T _new_version         libdsap        cache
  2176. +00000000 T _directory_free      libdsap        entry
  2177. +00000000 T _entry_free          libdsap        entry
  2178. +00000000 T _entry_replace       libdsap        entry
  2179. +00000000 T _entry_cpy           libdsap        entry
  2180. +00000000 T _get_default_entry   libdsap        entry
  2181. +00000000 T _check_known_oids    libdsap        entry
  2182. +00000000 T _entryrdn_cmp        libdsap        entry
  2183. +00000000 T _entry_cmp           libdsap        entry
  2184. +00000000 T _free_phylinebuf     libdsap        parse
  2185. +00000000 T _getline             libdsap        parse
  2186. +00000000 T _getnextline         libdsap        parse
  2187. +00000000 T _unesc_cont          libdsap        parse
  2188. +00000000 T _fpwr_esc            libdsap        parse
  2189. +00000000 T _pswr_esc            libdsap        parse
  2190. +00000000 T _cnt_escp            libdsap        parse
  2191. +00000000 T _srealloc            libdsap        parse
  2192. +00000000 T _get_attributes_aux  libdsap        parse
  2193. +00000000 T _get_attributes      libdsap        parse
  2194. +00000000 T _get_entry_aux       libdsap        parse
  2195. +00000000 T _get_entry           libdsap        parse
  2196. +00000000 T _new_constructor     libdsap        parse
  2197. +00000000 T _make_path           libdsap        parse
  2198. +00000000 T _aet_match           libdsap        ufn_aet
  2199. +00000000 T _DNS_append          libdsap        ufn_parse
  2200. +00000000 T _dnSelect            libdsap        ufn_parse
  2201. +00000000 T _ufn_search          libdsap        ufn_parse
  2202. +00000000 T _read_envlist        libdsap        ufn_parse
  2203. +00000000 T _ufn_match           libdsap        ufn_parse
  2204. +00000000 T _ufn_init            libdsap        ufn_parse
  2205. +00000000 T _set_lookup_ufn      libdsap        aetufn
  2206. +00000000 T _set_lookup_dap      libdsap        aetdap
  2207. +00000000 T _asnstr2pe           libdsap        nrs_info
  2208. +00000000 T _nrs_info_syntax     libdsap        nrs_info
  2209. +00000000 T _setAttributeLine    libdsap        inherit
  2210. +00000000 T _nextAttributeLine   libdsap        inherit
  2211. +00000000 T _inherit_syntax      libdsap        inherit
  2212. +00000000 T _audio_print         libdsap        audio
  2213. +00000000 T _audio_syntax        libdsap        audio
  2214. +00000000 T _reset_arg           libdsap        cstrings
  2215. +00000000 T _print_arg_error     libdsap        cstrings
  2216. +00000000 T _test_arg            libdsap        cstrings
  2217. +00000000 T _set_default_service libdsap        service
  2218. +00000000 T _get_default_service libdsap        service
  2219. +00000000 T _service_control     libdsap        service
  2220. +00000000 T _do_service_control  libdsap        service
  2221. +00000000 T _shuffle_up          libdsap        service
  2222. +00000000 T _new_service         libdsap        service
  2223. +00000000 T _set_sequence        libdsap        service
  2224. +00000000 T _unset_sequence      libdsap        service
  2225. +00000000 T _add_sequence        libdsap        service
  2226. +00000000 T _sequence_dn         libdsap        service
  2227. +00000000 T _show_sequence       libdsap        service
  2228. +00000000 T _check_security_parms libdsap        security
  2229. +00000000 T _cilist_syntax       libdsap        cilist
  2230. +00000000 T _str2permission      libdsap        policy
  2231. +00000000 T _subords_free        libdsap        ds_ext
  2232. +00000000 T _ems_free            libdsap        ds_ext
  2233. +00000000 T _aps_free            libdsap        ds_ext
  2234. +00000000 T _crefs_free          libdsap        ds_ext
  2235. +00000000 T _qap_cpy             libdsap        ap
  2236. +00000000 T _ap_syntax           libdsap        ap
  2237. +00000000 T _avl_insert          libdsap        turbo_avl
  2238. +00000000 T _avl_delete          libdsap        turbo_avl
  2239. +00000000 T _avl_inapply         libdsap        turbo_avl
  2240. +00000000 T _avl_postapply       libdsap        turbo_avl
  2241. +00000000 T _avl_preapply        libdsap        turbo_avl
  2242. +00000000 T _avl_apply           libdsap        turbo_avl
  2243. +00000000 T _avl_prefixapply     libdsap        turbo_avl
  2244. +00000000 T _avl_free            libdsap        turbo_avl
  2245. +00000000 T _avl_find            libdsap        turbo_avl
  2246. +00000000 T _avl_getfirst        libdsap        turbo_avl
  2247. +00000000 T _avl_getnext         libdsap        turbo_avl
  2248. +00000000 T _avl_dup_error       libdsap        turbo_avl
  2249. +00000000 T _strrev              libdsap        turbo_index
  2250. +00000000 T _index_soundex_cmp   libdsap        turbo_index
  2251. +00000000 T _index_soundex_prefix libdsap        turbo_index
  2252. +00000000 T _substring_prefix_cmp libdsap        turbo_index
  2253. +00000000 T _substring_prefix_tel_cmp libdsap        turbo_index
  2254. +00000000 T _substring_prefix_case_cmp libdsap        turbo_index
  2255. +00000000 T _indexav_cmp         libdsap        turbo_index
  2256. +00000000 T _new_indexnode       libdsap        turbo_index
  2257. +00000000 T _idn_cmp             libdsap        turbo_index
  2258. +00000000 T _th_prefix           libdsap        turbo_index
  2259. +00000000 T _turbo_add2index     libdsap        turbo_index
  2260. +00000000 T _turbo_index_delete  libdsap        turbo_index
  2261. +00000000 T _turbo_isoptimized   libdsap        turbo_index
  2262. +00000000 T _turbo_optimize      libdsap        turbo_index
  2263. +00000000 T _index_subtree       libdsap        turbo_index
  2264. +00000000 T _index_siblings      libdsap        turbo_index
  2265. +00000000 T _check_dsa_known_oids libdsap        attribute
  2266. +00000000 T _real_unravel_attribute libdsap        attribute
  2267. +00000000 T _set_inheritance     libdsap        attribute
  2268. +00000000 T _entry_find_type     libdsap        attribute
  2269. +00000000 T _documentStore_syntax libdsap        docstore
  2270. +00000000 T _QoS_syntax          libdsap        qos
  2271. +00000000 T _find_nest           libdsap        attr_sntx
  2272. +00000000 T _str2attrSeq         libdsap        attr_sntx
  2273. +00000000 T _attrSntx_enc        libdsap        attr_sntx
  2274. +00000000 T _attrSntx_dec        libdsap        attr_sntx
  2275. +00000000 T _attribute_syntax    libdsap        attr_sntx
  2276. +00000000 T _decode_t4           libdsap        photo_dec
  2277. +00000000 T _decode_t4_aux       libdsap        photo_dec
  2278. +00000000 T _next_run            libdsap        photo_dec
  2279. +00000000 T _decode_one          libdsap        photo_dec
  2280. +00000000 T _decode_two          libdsap        photo_dec
  2281. +00000000 T _undo_uncompressed_mode libdsap        photo_dec
  2282. +00000000 T _undo_pass_mode      libdsap        photo_dec
  2283. +00000000 T _undo_horiz_mode     libdsap        photo_dec
  2284. +00000000 T _undo_vert_mode      libdsap        photo_dec
  2285. +00000000 T _goto_b1             libdsap        photo_dec
  2286. +00000000 T _put_run             libdsap        photo_dec
  2287. +00000000 T _set_doutput         libdsap        photo_dec
  2288. +00000000 T _flush_doutput       libdsap        photo_dec
  2289. +00000000 T _set_dinput          libdsap        photo_dec
  2290. +00000000 T _get_node            libdsap        photo_build
  2291. +00000000 T _build_trees         libdsap        photo_build
  2292. +00000000 T _add_tree            libdsap        photo_build
  2293. +00000000 T _get_bit             libdsap        photo_util
  2294. +00000000 T _set_bit             libdsap        photo_util
  2295. +00000000 T _clr_bit             libdsap        photo_util
  2296. +00000000 T _photo_start         libdsap        photo_stub
  2297. +00000000 T _photo_end           libdsap        photo_stub
  2298. +00000000 T _photo_black         libdsap        photo_stub
  2299. +00000000 T _photo_white         libdsap        photo_stub
  2300. +00000000 T _photo_line_end      libdsap        photo_stub
  2301. +00000000 T _dsa_control_syntax  libdsap        dsa_control
  2302. +00000000 T _dsa_control_print   libdsap        dsa_control
  2303. +00000000 T _dsa_control_cmp     libdsap        dsa_control
  2304. +00000000 T _dsa_control_free    libdsap        dsa_control
  2305. +00000000 T _str2dsa_control     libdsap        dsa_control
  2306. +00000000 T _optional_dn_free    libdsap        dsa_control
  2307. +00000000 T _quipu_call_syntax   libdsap        dsa_control
  2308. +00000000 T _str2quipu_call      libdsap        dsa_control
  2309. +00000000 T _quipu_call_print    libdsap        dsa_control
  2310. +00000000 T _quipu_call_cpy      libdsap        dsa_control
  2311. +00000000 T _op_list_cpy         libdsap        dsa_control
  2312. +00000000 T _ops_cpy             libdsap        dsa_control
  2313. +00000000 T _chain_list_cpy      libdsap        dsa_control
  2314. +00000000 T _sub_ch_list_cpy     libdsap        dsa_control
  2315. +00000000 T _quipu_call_cmp      libdsap        dsa_control
  2316. +00000000 T _quipu_call_free     libdsap        dsa_control
  2317. +00000000 T _op_list_free        libdsap        dsa_control
  2318. +00000000 T _ops_free            libdsap        dsa_control
  2319. +00000000 T _chain_list_free     libdsap        dsa_control
  2320. +00000000 T _auth_level_free     libdsap        dsa_control
  2321. +00000000 T _use_serv_null       libdsap        osisec-int
  2322. +00000000 T _nullsigned          libdsap        osisec-int
  2323. +00000000 T _nullverify          libdsap        osisec-int
  2324. +00000000 T _null_ckpath         libdsap        osisec-int
  2325. +00000000 T _null_mkpath         libdsap        osisec-int
  2326. +00000000 T _nullencrypted       libdsap        osisec-int
  2327. +00000000 T _nulldecrypted       libdsap        osisec-int
  2328. +00000000 T _nullmknonce         libdsap        osisec-int
  2329. +00000000 T _nullcknonce         libdsap        osisec-int
  2330. +00000000 T _sacl_free           libdsap        searchacl
  2331. +00000000 T _lacl_free           libdsap        searchacl
  2332. +00000000 T _sacl_cmp            libdsap        searchacl
  2333. +00000000 T _sacl_print          libdsap        searchacl
  2334. +00000000 T _str2lacl            libdsap        searchacl
  2335. +00000000 T _lacl_print          libdsap        searchacl
  2336. +00000000 T _sacl_syntax         libdsap        searchacl
  2337. +00000000 T _lacl_syntax         libdsap        searchacl
  2338. +00000000 T _authp_cmp           libdsap        authpolicy
  2339. +00000000 T _authp_print         libdsap        authpolicy
  2340. +00000000 T _authp_syntax        libdsap        authpolicy
  2341. +00000000 T _DspAsynBindReqAux   libdsap        dsapbind1
  2342. +00000000 T _DspAsynBindRequest  libdsap        dsapbind1
  2343. +00000000 T _QspAsynBindReqAux   libdsap        dsapbind1
  2344. +00000000 T _QspAsynBindRequest  libdsap        dsapbind1
  2345. +00000000 T _DspAsynBindRetry    libdsap        dsapbind1
  2346. +00000000 T _QspAsynBindRetry    libdsap        dsapbind1
  2347. +00000000 T _DBindDecode         libdsap        dsapbind1
  2348. +00000000 T _IspAsynBindReqAux   libdsap        dsapbind1
  2349. +00000000 T _IspAsynBindRequest  libdsap        dsapbind1
  2350. +00000000 T _IspAsynBindRetry    libdsap        dsapbind1
  2351. +00000000 T _DBindInit           libdsap        dsapbind2
  2352. +00000000 T _DBindResult         libdsap        dsapbind2
  2353. +00000000 T _DBindError          libdsap        dsapbind2
  2354. +00000000 T _DBindReject         libdsap        dsapbind2
  2355. +00000000 T _select_context      libdsap        dsapcontexts
  2356. +00000000 T _judge_ctxlist       libdsap        dsapcontexts
  2357. +00000000 T _find_ctx_id         libdsap        dsapcontexts
  2358. +00000000 T _check_dap_ctxlist   libdsap        dsapcontexts
  2359. +00000000 T _check_dsp_ctxlist   libdsap        dsapcontexts
  2360. +00000000 T _check_qsp_ctxlist   libdsap        dsapcontexts
  2361. +00000000 T _check_isp_ctxlist   libdsap        dsapcontexts
  2362. +00000000 T _DUnBindRequest      libdsap        dsapunbind1
  2363. +00000000 T _DUnBindRetry        libdsap        dsapunbind1
  2364. +00000000 T _DUnBindAccept       libdsap        dsapunbind2
  2365. +00000000 T _DUnBindReject       libdsap        dsapunbind2
  2366. +00000000 T _DWaitRequest        libdsap        dsapwait
  2367. +00000000 T _DapRespWaitRequest  libdsap        dsapwait
  2368. +00000000 T _DspWaitRequest      libdsap        dsapwait
  2369. +00000000 T _QspWaitRequest      libdsap        dsapwait
  2370. +00000000 T _DapDecodeInvoke     libdsap        dsapwait
  2371. +00000000 T _DspDecodeInvoke     libdsap        dsapwait
  2372. +00000000 T _DspDecodeResult     libdsap        dsapwait
  2373. +00000000 T _QspDecodeInvoke     libdsap        dsapwait
  2374. +00000000 T _QspDecodeResult     libdsap        dsapwait
  2375. +00000000 T _DDecodeError        libdsap        dsapwait
  2376. +00000000 T _DDecodeUnbind       libdsap        dsapwait
  2377. +00000000 T _IspWaitRequest      libdsap        dsapwait
  2378. +00000000 T _IspDecodeInvoke     libdsap        dsapwait
  2379. +00000000 T _IspDecodeResult     libdsap        dsapwait
  2380. +00000000 T _watch_dog_final     libdsap        dsapwait
  2381. +00000000 T _watch_dog           libdsap        dsapwait
  2382. +00000000 T _watch_dog_aux       libdsap        dsapwait
  2383. +00000000 T _watch_dog_reset     libdsap        dsapwait
  2384. +00000000 T _watch_dog_final_reset libdsap        dsapwait
  2385. +00000000 T _DapInvokeRequest    libdsap        dsapinvoke
  2386. +00000000 T _DapEncodeInvoke     libdsap        dsapinvoke
  2387. +00000000 T _DspInvokeRequest    libdsap        dsapinvoke
  2388. +00000000 T _DspEncodeInvoke     libdsap        dsapinvoke
  2389. +00000000 T _QspInvokeRequest    libdsap        dsapinvoke
  2390. +00000000 T _QspEncodeInvoke     libdsap        dsapinvoke
  2391. +00000000 T _IspInvokeRequest    libdsap        dsapinvoke
  2392. +00000000 T _IspEncodeInvoke     libdsap        dsapinvoke
  2393. +00000000 T _DapResultRequest    libdsap        dsapresult
  2394. +00000000 T _DapEncodeResult     libdsap        dsapresult
  2395. +00000000 T _DspResultRequest    libdsap        dsapresult
  2396. +00000000 T _DspEncodeResult     libdsap        dsapresult
  2397. +00000000 T _QspResultRequest    libdsap        dsapresult
  2398. +00000000 T _QspEncodeResult     libdsap        dsapresult
  2399. +00000000 T _IspResultRequest    libdsap        dsapresult
  2400. +00000000 T _IspEncodeResult     libdsap        dsapresult
  2401. +00000000 T _DapErrorRequest     libdsap        dsaperror
  2402. +00000000 T _DspErrorRequest     libdsap        dsaperror
  2403. +00000000 T _QspErrorRequest     libdsap        dsaperror
  2404. +00000000 T _DEncodeError        libdsap        dsaperror
  2405. +00000000 T _IspErrorRequest     libdsap        dsaperror
  2406. +00000000 T _DRejectRequest      libdsap        dsapreject
  2407. +00000000 T _DUAbortRequest      libdsap        dsapabort
  2408. +00000000 T _ronot2dsaplose      libdsap        dsaprovider
  2409. +00000000 T _ros2dsaplose        libdsap        dsaprovider
  2410. +00000000 T _ros2dsapreject      libdsap        dsaprovider
  2411. +00000000 T _dsaplose            libdsap        dsaplose
  2412. +00000000 T _dsapreject          libdsap        dsaplose
  2413. +00000000 T _DapInitWaitRequest  libdsap        dapwait
  2414. +00000000 T _DapDecodeResult     libdsap        dapwait
  2415. +00000000 T _DapDecodeError      libdsap        dapwait
  2416. +00000000 T _ds_bind             libdsap        dapbind
  2417. +00000000 T _secure_ds_bind      libdsap        dapbind
  2418. +00000000 T _dap_bind            libdsap        dapbind
  2419. +00000000 T _DapAsynBindReqAux   libdsap        dapbind
  2420. +00000000 T _DapAsynBindRequest  libdsap        dapbind
  2421. +00000000 T _DapAsynBindRetry    libdsap        dapbind
  2422. +00000000 T _DapBindDecode       libdsap        dapbind
  2423. +00000000 T _ds_unbind           libdsap        dapunbind
  2424. +00000000 T _dap_unbind          libdsap        dapunbind
  2425. +00000000 T _DapUnBindRequest    libdsap        dapunbind
  2426. +00000000 T _DapUnBindRetry      libdsap        dapunbind
  2427. +00000000 T _dap_abandon         libdsap        dapabandon
  2428. +00000000 T _DapAbandon          libdsap        dapabandon
  2429. +00000000 T _dap_addentry        libdsap        dapaddent
  2430. +00000000 T _DapAddEntry         libdsap        dapaddent
  2431. +00000000 T _dap_compare         libdsap        dapcompare
  2432. +00000000 T _DapCompare          libdsap        dapcompare
  2433. +00000000 T _DapInvokeReqAux     libdsap        dapinvoke
  2434. +00000000 T _DapSyncInvokeRequest libdsap        dapinvoke
  2435. +00000000 T _DapIntrInvokeRequest libdsap        dapinvoke
  2436. +00000000 T _DapAsynInvokeRequest libdsap        dapinvoke
  2437. +00000000 T _DapInterrupt        libdsap        dapinvoke
  2438. +00000000 T _pdu_dump_init       libdsap        dapinvoke
  2439. +00000000 T _pdu_dump            libdsap        dapinvoke
  2440. +00000000 T _dap_list            libdsap        daplist
  2441. +00000000 T _DapList             libdsap        daplist
  2442. +00000000 T _dap_modifyentry     libdsap        dapmodent
  2443. +00000000 T _DapModifyEntry      libdsap        dapmodent
  2444. +00000000 T _dap_modifyrdn       libdsap        dapmodrdn
  2445. +00000000 T _DapModifyRDN        libdsap        dapmodrdn
  2446. +00000000 T _dap_read            libdsap        dapread
  2447. +00000000 T _DapRead             libdsap        dapread
  2448. +00000000 T _dap_removeentry     libdsap        daprement
  2449. +00000000 T _DapRemoveEntry      libdsap        daprement
  2450. +00000000 T _dap_search          libdsap        dapsearch
  2451. +00000000 T _DapSearch           libdsap        dapsearch
  2452. +00000000 T _daplose             libdsap        daplose
  2453. +00000000 T _dapreject           libdsap        daplose
  2454. +00000000 T _ronot2daplose       libdsap        daprovider
  2455. +00000000 T _ros2daplose         libdsap        daprovider
  2456. +00000000 T _ros2dapreject       libdsap        daprovider
  2457. +00000000 T _bind_arg_free       libdsap        ds_types
  2458. +00000000 T _op_arg_free         libdsap        ds_types
  2459. +00000000 T _ch_arg_free         libdsap        ds_types
  2460. +00000000 T _ds_arg_free         libdsap        ds_types
  2461. +00000000 T _read_arg_free       libdsap        ds_types
  2462. +00000000 T _compare_arg_free    libdsap        ds_types
  2463. +00000000 T _list_arg_free       libdsap        ds_types
  2464. +00000000 T _search_arg_free     libdsap        ds_types
  2465. +00000000 T _addentry_arg_free   libdsap        ds_types
  2466. +00000000 T _removeentry_arg_free libdsap        ds_types
  2467. +00000000 T _modifyentry_arg_free libdsap        ds_types
  2468. +00000000 T _modifyrdn_arg_free  libdsap        ds_types
  2469. +00000000 T _getedb_arg_free     libdsap        ds_types
  2470. +00000000 T _op_res_free         libdsap        ds_types
  2471. +00000000 T _ch_res_free         libdsap        ds_types
  2472. +00000000 T _ds_res_free         libdsap        ds_types
  2473. +00000000 T _trace_info_free     libdsap        ds_types
  2474. +00000000 T _ca_free             libdsap        ds_types
  2475. +00000000 T _extension_free      libdsap        ds_types
  2476. +00000000 T _cross_refs_free     libdsap        ds_types
  2477. +00000000 T _ds_arg_dup          libdsap        ds_types
  2478. +00000000 T _read_arg_dup        libdsap        ds_types
  2479. +00000000 T _compare_arg_dup     libdsap        ds_types
  2480. +00000000 T _abandon_arg_dup     libdsap        ds_types
  2481. +00000000 T _list_arg_dup        libdsap        ds_types
  2482. +00000000 T _search_arg_dup      libdsap        ds_types
  2483. +00000000 T _addentry_arg_dup    libdsap        ds_types
  2484. +00000000 T _removeentry_arg_dup libdsap        ds_types
  2485. +00000000 T _modifyentry_arg_dup libdsap        ds_types
  2486. +00000000 T _modifyrdn_arg_dup   libdsap        ds_types
  2487. +00000000 T _getedb_arg_dup      libdsap        ds_types
  2488. +00000000 T _ca_dup              libdsap        ds_types
  2489. +00000000 T _secp_cpy            libdsap        ds_types
  2490. +00000000 T _random_cpy          libdsap        ds_types
  2491. +00000000 T _sig_cpy             libdsap        ds_types
  2492. +00000000 T _ext_cpy             libdsap        ds_types
  2493. +00000000 T _filter_cpy          libdsap        ds_types
  2494. +00000000 T _filter_item_dup     libdsap        ds_types
  2495. +00000000 T _fi_sub_dup          libdsap        ds_types
  2496. +00000000 T _ems_cpy             libdsap        ds_types
  2497. +00000000 T _eis_dup             libdsap        ds_types
  2498. +00000000 T _ava_dup             libdsap        ds_types
  2499. +00000000 T _ros_log             libdsap        plog
  2500. +00000000 T _acs_log             libdsap        plog
  2501. +00000000 T _td_log              libdsap        plog
  2502. +00000000 T _SetROPS             libdsap        plog
  2503. +00000000 T _FWaitRequest        libftam        ftamprovider
  2504. +00000000 T _FWaitRequestAux     libftam        ftamprovider
  2505. +00000000 T _FSetIndications     libftam        ftamprovider
  2506. +00000000 T _acs2ftamlose        libftam        ftamprovider
  2507. +00000000 T _acs2ftamabort       libftam        ftamprovider
  2508. +00000000 T _ps2ftamlose         libftam        ftamprovider
  2509. +00000000 T _newfsblk            libftam        ftamprovider
  2510. +00000000 T _freefsblk           libftam        ftamprovider
  2511. +00000000 T _findfsblk           libftam        ftamprovider
  2512. +00000000 T _FErrString          libftam        ftamerror
  2513. +00000000 T _FInitializeRequest  libftam        ftaminitiate
  2514. +00000000 T _FInit               libftam        ftamrespond
  2515. +00000000 T _FInitializeResponse libftam        ftamrespond
  2516. +00000000 T _FTerminateRequest   libftam        ftamrelease1
  2517. +00000000 T _FTerminateResponse  libftam        ftamrelease2
  2518. +00000000 T _FUAbortRequest      libftam        ftamabort
  2519. +00000000 T _FAbortRequestAux    libftam        ftamabort
  2520. +00000000 T _FManageRequest      libftam        ftamgroup1
  2521. +00000000 T _FBulkBeginRequest   libftam        ftamgroup1
  2522. +00000000 T _FBulkEndRequest     libftam        ftamgroup1
  2523. +00000000 T _FManageResponse     libftam        ftamgroup2
  2524. +00000000 T _FBulkBeginResponse  libftam        ftamgroup2
  2525. +00000000 T _FBulkEndResponse    libftam        ftamgroup2
  2526. +00000000 T _FAccessRequest      libftam        ftamaccess1
  2527. +00000000 T _FAccessResponse     libftam        ftamaccess2
  2528. +00000000 T _FDataRequest        libftam        ftambulk
  2529. +00000000 T _FDataEndRequest     libftam        ftambulk
  2530. +00000000 T _FCancelRequest      libftam        ftambulk
  2531. +00000000 T _FCancelResponse     libftam        ftambulk
  2532. +00000000 T _FCancelResponseAux  libftam        ftambulk
  2533. +00000000 T _FReadWriteRequest   libftam        ftambulk1
  2534. +00000000 T _FTransEndRequest    libftam        ftambulk1
  2535. +00000000 T _FTransEndResponse   libftam        ftambulk2
  2536. +00000000 T _FSelectMask         libftam        ftamselect
  2537. +00000000 T _FHookRequest        libftam        ftamtrace
  2538. +00000000 T _FTraceHook          libftam        ftamtrace
  2539. +00000000 T _acl2fpm             libftam        ftamacl
  2540. +00000000 T _fpm2acl             libftam        ftamacl
  2541. +00000000 T _attr2fpm            libftam        ftamattr
  2542. +00000000 T _fpm2attr            libftam        ftamattr
  2543. +00000000 T _FAFREE              libftam        ftamattr
  2544. +00000000 T _bits2fpm            libftam        ftambits
  2545. +00000000 T _fpm2bits            libftam        ftambits
  2546. +00000000 T _chrg2fpm            libftam        ftamchrg
  2547. +00000000 T _fpm2chrg            libftam        ftamchrg
  2548. +00000000 T _conctl2fpm          libftam        ftamconctl
  2549. +00000000 T _fpm2conctl          libftam        ftamconctl
  2550. +00000000 T _conacc2fpm          libftam        ftamconctl
  2551. +00000000 T _fpm2conacc          libftam        ftamconctl
  2552. +00000000 T _diag2fpm            libftam        ftamdiag
  2553. +00000000 T _fpm2diag            libftam        ftamdiag
  2554. +00000000 T _faduid2fpm          libftam        ftamfaduid
  2555. +00000000 T _fpm2faduid          libftam        ftamfaduid
  2556. +00000000 T _pass2fpm            libftam        ftampass
  2557. +00000000 T _fpm2pass            libftam        ftampass
  2558. +00000000 T _shared2fpm          libftam        ftamshare
  2559. +00000000 T _fpm2shared          libftam        ftamshare
  2560. +00000000 T _fpktlose            libftam        ftamlose
  2561. +00000000 T _ftamlose            libftam        ftamlose
  2562. +00000000 T _ftamoops            libftam        ftamlose
  2563. +00000000 T _setisodocument      libftam        ftamdocument
  2564. +00000000 T _endisodocument      libftam        ftamdocument
  2565. +00000000 T _getisodocument      libftam        ftamdocument
  2566. +00000000 T _getisodocumentbyentry libftam        ftamdocument
  2567. +00000000 T _getisodocumentbytype libftam        ftamdocument
  2568. +00000000 T _fdf_p2names         libftam        ftamfdf
  2569. +00000000 T _fdf_names2p         libftam        ftamfdf
  2570. +00000000 T _fdf_attrs2d         libftam        ftamfdf
  2571. +00000000 T _fdf_d2attrs         libftam        ftamfdf
  2572. diff -u --recursive --new-file isode-8.0/jump/jump.import isode-8.0-linux/jump/jump.import
  2573. --- isode-8.0/jump/jump.import    Thu Jan  1 01:00:00 1970
  2574. +++ isode-8.0-linux/jump/jump.import    Thu Aug 26 14:24:23 1993
  2575. @@ -0,0 +1,917 @@
  2576. +/usr/lib/libc.sa(__libc.o):00001000 a __GOT_SIZE
  2577. +/usr/lib/libc.sa(__libc.o):6008f0b0 A _AL
  2578. +/usr/lib/libc.sa(__libc.o):6008f198 A _AL_PARM
  2579. +/usr/lib/libc.sa(__libc.o):6008f060 A _AM
  2580. +/usr/lib/libc.sa(__libc.o):6008f0b4 A _BC
  2581. +/usr/lib/libc.sa(__libc.o):6008f064 A _BS
  2582. +/usr/lib/libc.sa(__libc.o):6008f0bc A _BT
  2583. +/usr/lib/libc.sa(__libc.o):6008f068 A _CA
  2584. +/usr/lib/libc.sa(__libc.o):6008f0c0 A _CD
  2585. +/usr/lib/libc.sa(__libc.o):6008f0c4 A _CE
  2586. +/usr/lib/libc.sa(__libc.o):6008f0c8 A _CL
  2587. +/usr/lib/libc.sa(__libc.o):6008f0cc A _CM
  2588. +/usr/lib/libc.sa(__libc.o):6008f048 A _COLS
  2589. +/usr/lib/libc.sa(__libc.o):6008f0d0 A _CR
  2590. +/usr/lib/libc.sa(__libc.o):6008f0d4 A _CS
  2591. +/usr/lib/libc.sa(__libc.o):6008f06c A _DA
  2592. +/usr/lib/libc.sa(__libc.o):6008f070 A _DB
  2593. +/usr/lib/libc.sa(__libc.o):6008f0d8 A _DC
  2594. +/usr/lib/libc.sa(__libc.o):6008f0dc A _DL
  2595. +/usr/lib/libc.sa(__libc.o):6008f19c A _DL_PARM
  2596. +/usr/lib/libc.sa(__libc.o):6008f0e0 A _DM
  2597. +/usr/lib/libc.sa(__libc.o):6008f0e4 A _DO
  2598. +/usr/lib/libc.sa(__libc.o):6008f1a4 A _DOWN_PARM
  2599. +/usr/lib/libc.sa(__libc.o):6008f03c A _Def_term
  2600. +/usr/lib/libc.sa(__libc.o):6008f0e8 A _ED
  2601. +/usr/lib/libc.sa(__libc.o):6008f0ec A _EI
  2602. +/usr/lib/libc.sa(__libc.o):6008f074 A _EO
  2603. +/usr/lib/libc.sa(__libc.o):6008f1b8 A _GT
  2604. +/usr/lib/libc.sa(__libc.o):6008f078 A _HC
  2605. +/usr/lib/libc.sa(__libc.o):6008f118 A _HO
  2606. +/usr/lib/libc.sa(__libc.o):6008f07c A _HZ
  2607. +/usr/lib/libc.sa(__libc.o):6008f11c A _IC
  2608. +/usr/lib/libc.sa(__libc.o):6008f120 A _IM
  2609. +/usr/lib/libc.sa(__libc.o):6008f080 A _IN
  2610. +/usr/lib/libc.sa(__libc.o):6008f124 A _IP
  2611. +/usr/lib/libc.sa(__libc.o):6008f0f0 A _K0
  2612. +/usr/lib/libc.sa(__libc.o):6008f0f4 A _K1
  2613. +/usr/lib/libc.sa(__libc.o):6008f0f8 A _K2
  2614. +/usr/lib/libc.sa(__libc.o):6008f0fc A _K3
  2615. +/usr/lib/libc.sa(__libc.o):6008f100 A _K4
  2616. +/usr/lib/libc.sa(__libc.o):6008f104 A _K5
  2617. +/usr/lib/libc.sa(__libc.o):6008f108 A _K6
  2618. +/usr/lib/libc.sa(__libc.o):6008f10c A _K7
  2619. +/usr/lib/libc.sa(__libc.o):6008f110 A _K8
  2620. +/usr/lib/libc.sa(__libc.o):6008f114 A _K9
  2621. +/usr/lib/libc.sa(__libc.o):6008f128 A _KD
  2622. +/usr/lib/libc.sa(__libc.o):6008f12c A _KE
  2623. +/usr/lib/libc.sa(__libc.o):6008f130 A _KH
  2624. +/usr/lib/libc.sa(__libc.o):6008f134 A _KL
  2625. +/usr/lib/libc.sa(__libc.o):6008f138 A _KR
  2626. +/usr/lib/libc.sa(__libc.o):6008f13c A _KS
  2627. +/usr/lib/libc.sa(__libc.o):6008f140 A _KU
  2628. +/usr/lib/libc.sa(__libc.o):6008f1a8 A _LEFT_PARM
  2629. +/usr/lib/libc.sa(__libc.o):6008f044 A _LINES
  2630. +/usr/lib/libc.sa(__libc.o):6008f144 A _LL
  2631. +/usr/lib/libc.sa(__libc.o):6008f148 A _MA
  2632. +/usr/lib/libc.sa(__libc.o):6008f084 A _MI
  2633. +/usr/lib/libc.sa(__libc.o):6008f088 A _MS
  2634. +/usr/lib/libc.sa(__libc.o):6008f030 A _My_term
  2635. +/usr/lib/libc.sa(__libc.o):6008f08c A _NC
  2636. +/usr/lib/libc.sa(__libc.o):6008f14c A _ND
  2637. +/usr/lib/libc.sa(__libc.o):6008f150 A _NL
  2638. +/usr/lib/libc.sa(__libc.o):6008f1bc A _NONL
  2639. +/usr/lib/libc.sa(__libc.o):6008f090 A _NS
  2640. +/usr/lib/libc.sa(__libc.o):6008f094 A _OS
  2641. +/usr/lib/libc.sa(__libc.o):6008f1b0 A _PC
  2642. +/usr/lib/libc.sa(__libc.o):6008f154 A _RC
  2643. +/usr/lib/libc.sa(__libc.o):6008f1ac A _RIGHT_PARM
  2644. +/usr/lib/libc.sa(__libc.o):6008f158 A _SC
  2645. +/usr/lib/libc.sa(__libc.o):6008f15c A _SE
  2646. +/usr/lib/libc.sa(__libc.o):6008f160 A _SF
  2647. +/usr/lib/libc.sa(__libc.o):6008f164 A _SO
  2648. +/usr/lib/libc.sa(__libc.o):6008f168 A _SR
  2649. +/usr/lib/libc.sa(__libc.o):6008f16c A _TA
  2650. +/usr/lib/libc.sa(__libc.o):6008f170 A _TE
  2651. +/usr/lib/libc.sa(__libc.o):6008f174 A _TI
  2652. +/usr/lib/libc.sa(__libc.o):6008f178 A _UC
  2653. +/usr/lib/libc.sa(__libc.o):6008f17c A _UE
  2654. +/usr/lib/libc.sa(__libc.o):6008f098 A _UL
  2655. +/usr/lib/libc.sa(__libc.o):6008f180 A _UP
  2656. +/usr/lib/libc.sa(__libc.o):6008f1c0 A _UPPERCASE
  2657. +/usr/lib/libc.sa(__libc.o):6008f1a0 A _UP_PARM
  2658. +/usr/lib/libc.sa(__libc.o):6008f188 A _US
  2659. +/usr/lib/libc.sa(__libc.o):6008f18c A _VB
  2660. +/usr/lib/libc.sa(__libc.o):6008f194 A _VE
  2661. +/usr/lib/libc.sa(__libc.o):6008f190 A _VS
  2662. +/usr/lib/libc.sa(__libc.o):6008f09c A _XB
  2663. +/usr/lib/libc.sa(__libc.o):6008f0a0 A _XN
  2664. +/usr/lib/libc.sa(__libc.o):6008f0a8 A _XS
  2665. +/usr/lib/libc.sa(__libc.o):6008f0a4 A _XT
  2666. +/usr/lib/libc.sa(__libc.o):6008f0ac A _XX
  2667. +/usr/lib/libc.sa(__libc.o):6008f1f4 A __9streambuf$_list_all
  2668. +/usr/lib/libc.sa(__libc.o):6008f214 A ____brk_addr
  2669. +/usr/lib/libc.sa(__libc.o):6008f01c A ___ctype_b
  2670. +/usr/lib/libc.sa(__libc.o):6008f020 A ___ctype_tolower
  2671. +/usr/lib/libc.sa(__libc.o):6008f024 A ___ctype_toupper
  2672. +/usr/lib/libc.sa(__libc.o):6008f1fc A ___environ
  2673. +/usr/lib/libc.sa(__libc.o):6008f250 A ___exit_funcs
  2674. +/usr/lib/libc.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
  2675. +/usr/lib/libc.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
  2676. +/usr/lib/libc.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
  2677. +/usr/lib/libc.sa(__libc.o):6008f018 A ___new_handler
  2678. +/usr/lib/libc.sa(__libc.o):6008f1e4 A ___std_filebuf_0
  2679. +/usr/lib/libc.sa(__libc.o):6008f1e8 A ___std_filebuf_1
  2680. +/usr/lib/libc.sa(__libc.o):6008f1ec A ___std_filebuf_2
  2681. +/usr/lib/libc.sa(__libc.o):6008f278 A ___ttyname
  2682. +/usr/lib/libc.sa(__libc.o):6008f238 A __collate_info
  2683. +/usr/lib/libc.sa(__libc.o):6008f23c A __ctype_info
  2684. +/usr/lib/libc.sa(__libc.o):6008f028 A __echoit
  2685. +/usr/lib/libc.sa(__libc.o):6008f034 A __endwin
  2686. +/usr/lib/libc.sa(__libc.o):6008f288 A __gdbm_fetch_val
  2687. +/usr/lib/libc.sa(__libc.o):6008f280 A __gdbm_file
  2688. +/usr/lib/libc.sa(__libc.o):6008f284 A __gdbm_memory
  2689. +/usr/lib/libc.sa(__libc.o):6008f1f8 A __iob
  2690. +/usr/lib/libc.sa(__libc.o):6008f240 A __monetary_info
  2691. +/usr/lib/libc.sa(__libc.o):6008f234 A __null_auth
  2692. +/usr/lib/libc.sa(__libc.o):6008f244 A __numeric_info
  2693. +/usr/lib/libc.sa(__libc.o):6008f2ec A __obstack
  2694. +/usr/lib/libc.sa(__libc.o):6008f1c8 A __pfast
  2695. +/usr/lib/libc.sa(__libc.o):6008f02c A __rawmode
  2696. +/usr/lib/libc.sa(__libc.o):6008f1dc A __res
  2697. +/usr/lib/libc.sa(__libc.o):6008f04c A __res_iflg
  2698. +/usr/lib/libc.sa(__libc.o):6008f050 A __res_lflg
  2699. +/usr/lib/libc.sa(__libc.o):6008f270 A __res_opcodes
  2700. +/usr/lib/libc.sa(__libc.o):6008f274 A __res_resultcodes
  2701. +/usr/lib/libc.sa(__libc.o):6008f248 A __response_info
  2702. +/usr/lib/libc.sa(__libc.o):6008f2fc A __sigintr
  2703. +/usr/lib/libc.sa(__libc.o):6008f00c A __sys_errlist
  2704. +/usr/lib/libc.sa(__libc.o):6008f010 A __sys_nerr
  2705. +/usr/lib/libc.sa(__libc.o):6008f014 A __sys_siglist
  2706. +/usr/lib/libc.sa(__libc.o):6008f24c A __time_info
  2707. +/usr/lib/libc.sa(__libc.o):6008f05c A __tty
  2708. +/usr/lib/libc.sa(__libc.o):6008f040 A __tty_ch
  2709. +/usr/lib/libc.sa(__libc.o):6008f1cc A __unctrl
  2710. +/usr/lib/libc.sa(__libc.o):6008f2c8 A __vt$10istrstream$3ios
  2711. +/usr/lib/libc.sa(__libc.o):6008f2c4 A __vt$10ostrstream$3ios
  2712. +/usr/lib/libc.sa(__libc.o):6008f2e0 A __vt$11fstreambase$3ios
  2713. +/usr/lib/libc.sa(__libc.o):6008f2cc A __vt$13strstreambase$3ios
  2714. +/usr/lib/libc.sa(__libc.o):6008f2d4 A __vt$7fstream$3ios
  2715. +/usr/lib/libc.sa(__libc.o):6008f2ac A __vt$7ostream$3ios
  2716. +/usr/lib/libc.sa(__libc.o):6008f2dc A __vt$8ifstream$3ios
  2717. +/usr/lib/libc.sa(__libc.o):6008f2a4 A __vt$8iostream$3ios
  2718. +/usr/lib/libc.sa(__libc.o):6008f2d8 A __vt$8ofstream$3ios
  2719. +/usr/lib/libc.sa(__libc.o):6008f2c0 A __vt$9strstream$3ios
  2720. +/usr/lib/libc.sa(__libc.o):6008f2b4 A __vt$backupbuf
  2721. +/usr/lib/libc.sa(__libc.o):6008f2b0 A __vt$filebuf
  2722. +/usr/lib/libc.sa(__libc.o):6008f2bc A __vt$ios
  2723. +/usr/lib/libc.sa(__libc.o):6008f2a8 A __vt$istream$3ios
  2724. +/usr/lib/libc.sa(__libc.o):6008f2b8 A __vt$streambuf
  2725. +/usr/lib/libc.sa(__libc.o):6008f2d0 A __vt$strstreambuf
  2726. +/usr/lib/libc.sa(__libc.o):6008f27c A __win
  2727. +/usr/lib/libc.sa(__libc.o):6008f294 A _cerr
  2728. +/usr/lib/libc.sa(__libc.o):6008f298 A _cin
  2729. +/usr/lib/libc.sa(__libc.o):6008f29c A _clog
  2730. +/usr/lib/libc.sa(__libc.o):6008f290 A _cout
  2731. +/usr/lib/libc.sa(__libc.o):6008f058 A _curscr
  2732. +/usr/lib/libc.sa(__libc.o):6008f228 A _daylight
  2733. +/usr/lib/libc.sa(__libc.o):6008f200 A _errno
  2734. +/usr/lib/libc.sa(__libc.o):6008f1d0 A _gdbm_errno
  2735. +/usr/lib/libc.sa(__libc.o):6008f28c A _gdbm_version
  2736. +/usr/lib/libc.sa(__libc.o):6008f008 A _h_errlist
  2737. +/usr/lib/libc.sa(__libc.o):6008f1d8 A _h_errno
  2738. +/usr/lib/libc.sa(__libc.o):6008f2a0 A _h_nerr
  2739. +/usr/lib/libc.sa(__libc.o):6008f1c4 A _normtty
  2740. +/usr/lib/libc.sa(__libc.o):6008f1f0 A _not_open_filebuf
  2741. +/usr/lib/libc.sa(__libc.o):6008f204 A _optarg
  2742. +/usr/lib/libc.sa(__libc.o):6008f20c A _opterr
  2743. +/usr/lib/libc.sa(__libc.o):6008f208 A _optind
  2744. +/usr/lib/libc.sa(__libc.o):6008f2e4 A _optopt
  2745. +/usr/lib/libc.sa(__libc.o):6008f218 A _ospeed
  2746. +/usr/lib/libc.sa(__libc.o):6008f26c A _re_max_failures
  2747. +/usr/lib/libc.sa(__libc.o):6008f210 A _re_syntax_options
  2748. +/usr/lib/libc.sa(__libc.o):6008f1e0 A _rexecoptions
  2749. +/usr/lib/libc.sa(__libc.o):6008f230 A _rpc_createerr
  2750. +/usr/lib/libc.sa(__libc.o):6008f25c A _stderr
  2751. +/usr/lib/libc.sa(__libc.o):6008f254 A _stdin
  2752. +/usr/lib/libc.sa(__libc.o):6008f258 A _stdout
  2753. +/usr/lib/libc.sa(__libc.o):6008f054 A _stdscr
  2754. +/usr/lib/libc.sa(__libc.o):6008f2e8 A _svc_fdset
  2755. +/usr/lib/libc.sa(__libc.o):6008f224 A _timezone
  2756. +/usr/lib/libc.sa(__libc.o):6008f21c A _tputs_baud_rate
  2757. +/usr/lib/libc.sa(__libc.o):6008f038 A _ttytype
  2758. +/usr/lib/libc.sa(__libc.o):6008f220 A _tzname
  2759. +/usr/lib/libcurses.sa(__libc.o):00001000 a __GOT_SIZE
  2760. +/usr/lib/libcurses.sa(__libc.o):6008f0b0 A _AL
  2761. +/usr/lib/libcurses.sa(__libc.o):6008f198 A _AL_PARM
  2762. +/usr/lib/libcurses.sa(__libc.o):6008f060 A _AM
  2763. +/usr/lib/libcurses.sa(__libc.o):6008f0b4 A _BC
  2764. +/usr/lib/libcurses.sa(__libc.o):6008f064 A _BS
  2765. +/usr/lib/libcurses.sa(__libc.o):6008f0bc A _BT
  2766. +/usr/lib/libcurses.sa(__libc.o):6008f068 A _CA
  2767. +/usr/lib/libcurses.sa(__libc.o):6008f0c0 A _CD
  2768. +/usr/lib/libcurses.sa(__libc.o):6008f0c4 A _CE
  2769. +/usr/lib/libcurses.sa(__libc.o):6008f0c8 A _CL
  2770. +/usr/lib/libcurses.sa(__libc.o):6008f0cc A _CM
  2771. +/usr/lib/libcurses.sa(__libc.o):6008f048 A _COLS
  2772. +/usr/lib/libcurses.sa(__libc.o):6008f0d0 A _CR
  2773. +/usr/lib/libcurses.sa(__libc.o):6008f0d4 A _CS
  2774. +/usr/lib/libcurses.sa(__libc.o):6008f06c A _DA
  2775. +/usr/lib/libcurses.sa(__libc.o):6008f070 A _DB
  2776. +/usr/lib/libcurses.sa(__libc.o):6008f0d8 A _DC
  2777. +/usr/lib/libcurses.sa(__libc.o):6008f0dc A _DL
  2778. +/usr/lib/libcurses.sa(__libc.o):6008f19c A _DL_PARM
  2779. +/usr/lib/libcurses.sa(__libc.o):6008f0e0 A _DM
  2780. +/usr/lib/libcurses.sa(__libc.o):6008f0e4 A _DO
  2781. +/usr/lib/libcurses.sa(__libc.o):6008f1a4 A _DOWN_PARM
  2782. +/usr/lib/libcurses.sa(__libc.o):6008f03c A _Def_term
  2783. +/usr/lib/libcurses.sa(__libc.o):6008f0e8 A _ED
  2784. +/usr/lib/libcurses.sa(__libc.o):6008f0ec A _EI
  2785. +/usr/lib/libcurses.sa(__libc.o):6008f074 A _EO
  2786. +/usr/lib/libcurses.sa(__libc.o):6008f1b8 A _GT
  2787. +/usr/lib/libcurses.sa(__libc.o):6008f078 A _HC
  2788. +/usr/lib/libcurses.sa(__libc.o):6008f118 A _HO
  2789. +/usr/lib/libcurses.sa(__libc.o):6008f07c A _HZ
  2790. +/usr/lib/libcurses.sa(__libc.o):6008f11c A _IC
  2791. +/usr/lib/libcurses.sa(__libc.o):6008f120 A _IM
  2792. +/usr/lib/libcurses.sa(__libc.o):6008f080 A _IN
  2793. +/usr/lib/libcurses.sa(__libc.o):6008f124 A _IP
  2794. +/usr/lib/libcurses.sa(__libc.o):6008f0f0 A _K0
  2795. +/usr/lib/libcurses.sa(__libc.o):6008f0f4 A _K1
  2796. +/usr/lib/libcurses.sa(__libc.o):6008f0f8 A _K2
  2797. +/usr/lib/libcurses.sa(__libc.o):6008f0fc A _K3
  2798. +/usr/lib/libcurses.sa(__libc.o):6008f100 A _K4
  2799. +/usr/lib/libcurses.sa(__libc.o):6008f104 A _K5
  2800. +/usr/lib/libcurses.sa(__libc.o):6008f108 A _K6
  2801. +/usr/lib/libcurses.sa(__libc.o):6008f10c A _K7
  2802. +/usr/lib/libcurses.sa(__libc.o):6008f110 A _K8
  2803. +/usr/lib/libcurses.sa(__libc.o):6008f114 A _K9
  2804. +/usr/lib/libcurses.sa(__libc.o):6008f128 A _KD
  2805. +/usr/lib/libcurses.sa(__libc.o):6008f12c A _KE
  2806. +/usr/lib/libcurses.sa(__libc.o):6008f130 A _KH
  2807. +/usr/lib/libcurses.sa(__libc.o):6008f134 A _KL
  2808. +/usr/lib/libcurses.sa(__libc.o):6008f138 A _KR
  2809. +/usr/lib/libcurses.sa(__libc.o):6008f13c A _KS
  2810. +/usr/lib/libcurses.sa(__libc.o):6008f140 A _KU
  2811. +/usr/lib/libcurses.sa(__libc.o):6008f1a8 A _LEFT_PARM
  2812. +/usr/lib/libcurses.sa(__libc.o):6008f044 A _LINES
  2813. +/usr/lib/libcurses.sa(__libc.o):6008f144 A _LL
  2814. +/usr/lib/libcurses.sa(__libc.o):6008f148 A _MA
  2815. +/usr/lib/libcurses.sa(__libc.o):6008f084 A _MI
  2816. +/usr/lib/libcurses.sa(__libc.o):6008f088 A _MS
  2817. +/usr/lib/libcurses.sa(__libc.o):6008f030 A _My_term
  2818. +/usr/lib/libcurses.sa(__libc.o):6008f08c A _NC
  2819. +/usr/lib/libcurses.sa(__libc.o):6008f14c A _ND
  2820. +/usr/lib/libcurses.sa(__libc.o):6008f150 A _NL
  2821. +/usr/lib/libcurses.sa(__libc.o):6008f1bc A _NONL
  2822. +/usr/lib/libcurses.sa(__libc.o):6008f090 A _NS
  2823. +/usr/lib/libcurses.sa(__libc.o):6008f094 A _OS
  2824. +/usr/lib/libcurses.sa(__libc.o):6008f1b0 A _PC
  2825. +/usr/lib/libcurses.sa(__libc.o):6008f154 A _RC
  2826. +/usr/lib/libcurses.sa(__libc.o):6008f1ac A _RIGHT_PARM
  2827. +/usr/lib/libcurses.sa(__libc.o):6008f158 A _SC
  2828. +/usr/lib/libcurses.sa(__libc.o):6008f15c A _SE
  2829. +/usr/lib/libcurses.sa(__libc.o):6008f160 A _SF
  2830. +/usr/lib/libcurses.sa(__libc.o):6008f164 A _SO
  2831. +/usr/lib/libcurses.sa(__libc.o):6008f168 A _SR
  2832. +/usr/lib/libcurses.sa(__libc.o):6008f16c A _TA
  2833. +/usr/lib/libcurses.sa(__libc.o):6008f170 A _TE
  2834. +/usr/lib/libcurses.sa(__libc.o):6008f174 A _TI
  2835. +/usr/lib/libcurses.sa(__libc.o):6008f178 A _UC
  2836. +/usr/lib/libcurses.sa(__libc.o):6008f17c A _UE
  2837. +/usr/lib/libcurses.sa(__libc.o):6008f098 A _UL
  2838. +/usr/lib/libcurses.sa(__libc.o):6008f180 A _UP
  2839. +/usr/lib/libcurses.sa(__libc.o):6008f1c0 A _UPPERCASE
  2840. +/usr/lib/libcurses.sa(__libc.o):6008f1a0 A _UP_PARM
  2841. +/usr/lib/libcurses.sa(__libc.o):6008f188 A _US
  2842. +/usr/lib/libcurses.sa(__libc.o):6008f18c A _VB
  2843. +/usr/lib/libcurses.sa(__libc.o):6008f194 A _VE
  2844. +/usr/lib/libcurses.sa(__libc.o):6008f190 A _VS
  2845. +/usr/lib/libcurses.sa(__libc.o):6008f09c A _XB
  2846. +/usr/lib/libcurses.sa(__libc.o):6008f0a0 A _XN
  2847. +/usr/lib/libcurses.sa(__libc.o):6008f0a8 A _XS
  2848. +/usr/lib/libcurses.sa(__libc.o):6008f0a4 A _XT
  2849. +/usr/lib/libcurses.sa(__libc.o):6008f0ac A _XX
  2850. +/usr/lib/libcurses.sa(__libc.o):6008f1f4 A __9streambuf$_list_all
  2851. +/usr/lib/libcurses.sa(__libc.o):6008f214 A ____brk_addr
  2852. +/usr/lib/libcurses.sa(__libc.o):6008f01c A ___ctype_b
  2853. +/usr/lib/libcurses.sa(__libc.o):6008f020 A ___ctype_tolower
  2854. +/usr/lib/libcurses.sa(__libc.o):6008f024 A ___ctype_toupper
  2855. +/usr/lib/libcurses.sa(__libc.o):6008f1fc A ___environ
  2856. +/usr/lib/libcurses.sa(__libc.o):6008f250 A ___exit_funcs
  2857. +/usr/lib/libcurses.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
  2858. +/usr/lib/libcurses.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
  2859. +/usr/lib/libcurses.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
  2860. +/usr/lib/libcurses.sa(__libc.o):6008f018 A ___new_handler
  2861. +/usr/lib/libcurses.sa(__libc.o):6008f1e4 A ___std_filebuf_0
  2862. +/usr/lib/libcurses.sa(__libc.o):6008f1e8 A ___std_filebuf_1
  2863. +/usr/lib/libcurses.sa(__libc.o):6008f1ec A ___std_filebuf_2
  2864. +/usr/lib/libcurses.sa(__libc.o):6008f278 A ___ttyname
  2865. +/usr/lib/libcurses.sa(__libc.o):6008f238 A __collate_info
  2866. +/usr/lib/libcurses.sa(__libc.o):6008f23c A __ctype_info
  2867. +/usr/lib/libcurses.sa(__libc.o):6008f028 A __echoit
  2868. +/usr/lib/libcurses.sa(__libc.o):6008f034 A __endwin
  2869. +/usr/lib/libcurses.sa(__libc.o):6008f288 A __gdbm_fetch_val
  2870. +/usr/lib/libcurses.sa(__libc.o):6008f280 A __gdbm_file
  2871. +/usr/lib/libcurses.sa(__libc.o):6008f284 A __gdbm_memory
  2872. +/usr/lib/libcurses.sa(__libc.o):6008f1f8 A __iob
  2873. +/usr/lib/libcurses.sa(__libc.o):6008f240 A __monetary_info
  2874. +/usr/lib/libcurses.sa(__libc.o):6008f234 A __null_auth
  2875. +/usr/lib/libcurses.sa(__libc.o):6008f244 A __numeric_info
  2876. +/usr/lib/libcurses.sa(__libc.o):6008f2ec A __obstack
  2877. +/usr/lib/libcurses.sa(__libc.o):6008f1c8 A __pfast
  2878. +/usr/lib/libcurses.sa(__libc.o):6008f02c A __rawmode
  2879. +/usr/lib/libcurses.sa(__libc.o):6008f1dc A __res
  2880. +/usr/lib/libcurses.sa(__libc.o):6008f04c A __res_iflg
  2881. +/usr/lib/libcurses.sa(__libc.o):6008f050 A __res_lflg
  2882. +/usr/lib/libcurses.sa(__libc.o):6008f270 A __res_opcodes
  2883. +/usr/lib/libcurses.sa(__libc.o):6008f274 A __res_resultcodes
  2884. +/usr/lib/libcurses.sa(__libc.o):6008f248 A __response_info
  2885. +/usr/lib/libcurses.sa(__libc.o):6008f2fc A __sigintr
  2886. +/usr/lib/libcurses.sa(__libc.o):6008f00c A __sys_errlist
  2887. +/usr/lib/libcurses.sa(__libc.o):6008f010 A __sys_nerr
  2888. +/usr/lib/libcurses.sa(__libc.o):6008f014 A __sys_siglist
  2889. +/usr/lib/libcurses.sa(__libc.o):6008f24c A __time_info
  2890. +/usr/lib/libcurses.sa(__libc.o):6008f05c A __tty
  2891. +/usr/lib/libcurses.sa(__libc.o):6008f040 A __tty_ch
  2892. +/usr/lib/libcurses.sa(__libc.o):6008f1cc A __unctrl
  2893. +/usr/lib/libcurses.sa(__libc.o):6008f2c8 A __vt$10istrstream$3ios
  2894. +/usr/lib/libcurses.sa(__libc.o):6008f2c4 A __vt$10ostrstream$3ios
  2895. +/usr/lib/libcurses.sa(__libc.o):6008f2e0 A __vt$11fstreambase$3ios
  2896. +/usr/lib/libcurses.sa(__libc.o):6008f2cc A __vt$13strstreambase$3ios
  2897. +/usr/lib/libcurses.sa(__libc.o):6008f2d4 A __vt$7fstream$3ios
  2898. +/usr/lib/libcurses.sa(__libc.o):6008f2ac A __vt$7ostream$3ios
  2899. +/usr/lib/libcurses.sa(__libc.o):6008f2dc A __vt$8ifstream$3ios
  2900. +/usr/lib/libcurses.sa(__libc.o):6008f2a4 A __vt$8iostream$3ios
  2901. +/usr/lib/libcurses.sa(__libc.o):6008f2d8 A __vt$8ofstream$3ios
  2902. +/usr/lib/libcurses.sa(__libc.o):6008f2c0 A __vt$9strstream$3ios
  2903. +/usr/lib/libcurses.sa(__libc.o):6008f2b4 A __vt$backupbuf
  2904. +/usr/lib/libcurses.sa(__libc.o):6008f2b0 A __vt$filebuf
  2905. +/usr/lib/libcurses.sa(__libc.o):6008f2bc A __vt$ios
  2906. +/usr/lib/libcurses.sa(__libc.o):6008f2a8 A __vt$istream$3ios
  2907. +/usr/lib/libcurses.sa(__libc.o):6008f2b8 A __vt$streambuf
  2908. +/usr/lib/libcurses.sa(__libc.o):6008f2d0 A __vt$strstreambuf
  2909. +/usr/lib/libcurses.sa(__libc.o):6008f27c A __win
  2910. +/usr/lib/libcurses.sa(__libc.o):6008f294 A _cerr
  2911. +/usr/lib/libcurses.sa(__libc.o):6008f298 A _cin
  2912. +/usr/lib/libcurses.sa(__libc.o):6008f29c A _clog
  2913. +/usr/lib/libcurses.sa(__libc.o):6008f290 A _cout
  2914. +/usr/lib/libcurses.sa(__libc.o):6008f058 A _curscr
  2915. +/usr/lib/libcurses.sa(__libc.o):6008f228 A _daylight
  2916. +/usr/lib/libcurses.sa(__libc.o):6008f200 A _errno
  2917. +/usr/lib/libcurses.sa(__libc.o):6008f1d0 A _gdbm_errno
  2918. +/usr/lib/libcurses.sa(__libc.o):6008f28c A _gdbm_version
  2919. +/usr/lib/libcurses.sa(__libc.o):6008f008 A _h_errlist
  2920. +/usr/lib/libcurses.sa(__libc.o):6008f1d8 A _h_errno
  2921. +/usr/lib/libcurses.sa(__libc.o):6008f2a0 A _h_nerr
  2922. +/usr/lib/libcurses.sa(__libc.o):6008f1c4 A _normtty
  2923. +/usr/lib/libcurses.sa(__libc.o):6008f1f0 A _not_open_filebuf
  2924. +/usr/lib/libcurses.sa(__libc.o):6008f204 A _optarg
  2925. +/usr/lib/libcurses.sa(__libc.o):6008f20c A _opterr
  2926. +/usr/lib/libcurses.sa(__libc.o):6008f208 A _optind
  2927. +/usr/lib/libcurses.sa(__libc.o):6008f2e4 A _optopt
  2928. +/usr/lib/libcurses.sa(__libc.o):6008f218 A _ospeed
  2929. +/usr/lib/libcurses.sa(__libc.o):6008f26c A _re_max_failures
  2930. +/usr/lib/libcurses.sa(__libc.o):6008f210 A _re_syntax_options
  2931. +/usr/lib/libcurses.sa(__libc.o):6008f1e0 A _rexecoptions
  2932. +/usr/lib/libcurses.sa(__libc.o):6008f230 A _rpc_createerr
  2933. +/usr/lib/libcurses.sa(__libc.o):6008f25c A _stderr
  2934. +/usr/lib/libcurses.sa(__libc.o):6008f254 A _stdin
  2935. +/usr/lib/libcurses.sa(__libc.o):6008f258 A _stdout
  2936. +/usr/lib/libcurses.sa(__libc.o):6008f054 A _stdscr
  2937. +/usr/lib/libcurses.sa(__libc.o):6008f2e8 A _svc_fdset
  2938. +/usr/lib/libcurses.sa(__libc.o):6008f224 A _timezone
  2939. +/usr/lib/libcurses.sa(__libc.o):6008f21c A _tputs_baud_rate
  2940. +/usr/lib/libcurses.sa(__libc.o):6008f038 A _ttytype
  2941. +/usr/lib/libcurses.sa(__libc.o):6008f220 A _tzname
  2942. +/usr/lib/libdbm.sa(__libc.o):00001000 a __GOT_SIZE
  2943. +/usr/lib/libdbm.sa(__libc.o):6008f0b0 A _AL
  2944. +/usr/lib/libdbm.sa(__libc.o):6008f198 A _AL_PARM
  2945. +/usr/lib/libdbm.sa(__libc.o):6008f060 A _AM
  2946. +/usr/lib/libdbm.sa(__libc.o):6008f0b4 A _BC
  2947. +/usr/lib/libdbm.sa(__libc.o):6008f064 A _BS
  2948. +/usr/lib/libdbm.sa(__libc.o):6008f0bc A _BT
  2949. +/usr/lib/libdbm.sa(__libc.o):6008f068 A _CA
  2950. +/usr/lib/libdbm.sa(__libc.o):6008f0c0 A _CD
  2951. +/usr/lib/libdbm.sa(__libc.o):6008f0c4 A _CE
  2952. +/usr/lib/libdbm.sa(__libc.o):6008f0c8 A _CL
  2953. +/usr/lib/libdbm.sa(__libc.o):6008f0cc A _CM
  2954. +/usr/lib/libdbm.sa(__libc.o):6008f048 A _COLS
  2955. +/usr/lib/libdbm.sa(__libc.o):6008f0d0 A _CR
  2956. +/usr/lib/libdbm.sa(__libc.o):6008f0d4 A _CS
  2957. +/usr/lib/libdbm.sa(__libc.o):6008f06c A _DA
  2958. +/usr/lib/libdbm.sa(__libc.o):6008f070 A _DB
  2959. +/usr/lib/libdbm.sa(__libc.o):6008f0d8 A _DC
  2960. +/usr/lib/libdbm.sa(__libc.o):6008f0dc A _DL
  2961. +/usr/lib/libdbm.sa(__libc.o):6008f19c A _DL_PARM
  2962. +/usr/lib/libdbm.sa(__libc.o):6008f0e0 A _DM
  2963. +/usr/lib/libdbm.sa(__libc.o):6008f0e4 A _DO
  2964. +/usr/lib/libdbm.sa(__libc.o):6008f1a4 A _DOWN_PARM
  2965. +/usr/lib/libdbm.sa(__libc.o):6008f03c A _Def_term
  2966. +/usr/lib/libdbm.sa(__libc.o):6008f0e8 A _ED
  2967. +/usr/lib/libdbm.sa(__libc.o):6008f0ec A _EI
  2968. +/usr/lib/libdbm.sa(__libc.o):6008f074 A _EO
  2969. +/usr/lib/libdbm.sa(__libc.o):6008f1b8 A _GT
  2970. +/usr/lib/libdbm.sa(__libc.o):6008f078 A _HC
  2971. +/usr/lib/libdbm.sa(__libc.o):6008f118 A _HO
  2972. +/usr/lib/libdbm.sa(__libc.o):6008f07c A _HZ
  2973. +/usr/lib/libdbm.sa(__libc.o):6008f11c A _IC
  2974. +/usr/lib/libdbm.sa(__libc.o):6008f120 A _IM
  2975. +/usr/lib/libdbm.sa(__libc.o):6008f080 A _IN
  2976. +/usr/lib/libdbm.sa(__libc.o):6008f124 A _IP
  2977. +/usr/lib/libdbm.sa(__libc.o):6008f0f0 A _K0
  2978. +/usr/lib/libdbm.sa(__libc.o):6008f0f4 A _K1
  2979. +/usr/lib/libdbm.sa(__libc.o):6008f0f8 A _K2
  2980. +/usr/lib/libdbm.sa(__libc.o):6008f0fc A _K3
  2981. +/usr/lib/libdbm.sa(__libc.o):6008f100 A _K4
  2982. +/usr/lib/libdbm.sa(__libc.o):6008f104 A _K5
  2983. +/usr/lib/libdbm.sa(__libc.o):6008f108 A _K6
  2984. +/usr/lib/libdbm.sa(__libc.o):6008f10c A _K7
  2985. +/usr/lib/libdbm.sa(__libc.o):6008f110 A _K8
  2986. +/usr/lib/libdbm.sa(__libc.o):6008f114 A _K9
  2987. +/usr/lib/libdbm.sa(__libc.o):6008f128 A _KD
  2988. +/usr/lib/libdbm.sa(__libc.o):6008f12c A _KE
  2989. +/usr/lib/libdbm.sa(__libc.o):6008f130 A _KH
  2990. +/usr/lib/libdbm.sa(__libc.o):6008f134 A _KL
  2991. +/usr/lib/libdbm.sa(__libc.o):6008f138 A _KR
  2992. +/usr/lib/libdbm.sa(__libc.o):6008f13c A _KS
  2993. +/usr/lib/libdbm.sa(__libc.o):6008f140 A _KU
  2994. +/usr/lib/libdbm.sa(__libc.o):6008f1a8 A _LEFT_PARM
  2995. +/usr/lib/libdbm.sa(__libc.o):6008f044 A _LINES
  2996. +/usr/lib/libdbm.sa(__libc.o):6008f144 A _LL
  2997. +/usr/lib/libdbm.sa(__libc.o):6008f148 A _MA
  2998. +/usr/lib/libdbm.sa(__libc.o):6008f084 A _MI
  2999. +/usr/lib/libdbm.sa(__libc.o):6008f088 A _MS
  3000. +/usr/lib/libdbm.sa(__libc.o):6008f030 A _My_term
  3001. +/usr/lib/libdbm.sa(__libc.o):6008f08c A _NC
  3002. +/usr/lib/libdbm.sa(__libc.o):6008f14c A _ND
  3003. +/usr/lib/libdbm.sa(__libc.o):6008f150 A _NL
  3004. +/usr/lib/libdbm.sa(__libc.o):6008f1bc A _NONL
  3005. +/usr/lib/libdbm.sa(__libc.o):6008f090 A _NS
  3006. +/usr/lib/libdbm.sa(__libc.o):6008f094 A _OS
  3007. +/usr/lib/libdbm.sa(__libc.o):6008f1b0 A _PC
  3008. +/usr/lib/libdbm.sa(__libc.o):6008f154 A _RC
  3009. +/usr/lib/libdbm.sa(__libc.o):6008f1ac A _RIGHT_PARM
  3010. +/usr/lib/libdbm.sa(__libc.o):6008f158 A _SC
  3011. +/usr/lib/libdbm.sa(__libc.o):6008f15c A _SE
  3012. +/usr/lib/libdbm.sa(__libc.o):6008f160 A _SF
  3013. +/usr/lib/libdbm.sa(__libc.o):6008f164 A _SO
  3014. +/usr/lib/libdbm.sa(__libc.o):6008f168 A _SR
  3015. +/usr/lib/libdbm.sa(__libc.o):6008f16c A _TA
  3016. +/usr/lib/libdbm.sa(__libc.o):6008f170 A _TE
  3017. +/usr/lib/libdbm.sa(__libc.o):6008f174 A _TI
  3018. +/usr/lib/libdbm.sa(__libc.o):6008f178 A _UC
  3019. +/usr/lib/libdbm.sa(__libc.o):6008f17c A _UE
  3020. +/usr/lib/libdbm.sa(__libc.o):6008f098 A _UL
  3021. +/usr/lib/libdbm.sa(__libc.o):6008f180 A _UP
  3022. +/usr/lib/libdbm.sa(__libc.o):6008f1c0 A _UPPERCASE
  3023. +/usr/lib/libdbm.sa(__libc.o):6008f1a0 A _UP_PARM
  3024. +/usr/lib/libdbm.sa(__libc.o):6008f188 A _US
  3025. +/usr/lib/libdbm.sa(__libc.o):6008f18c A _VB
  3026. +/usr/lib/libdbm.sa(__libc.o):6008f194 A _VE
  3027. +/usr/lib/libdbm.sa(__libc.o):6008f190 A _VS
  3028. +/usr/lib/libdbm.sa(__libc.o):6008f09c A _XB
  3029. +/usr/lib/libdbm.sa(__libc.o):6008f0a0 A _XN
  3030. +/usr/lib/libdbm.sa(__libc.o):6008f0a8 A _XS
  3031. +/usr/lib/libdbm.sa(__libc.o):6008f0a4 A _XT
  3032. +/usr/lib/libdbm.sa(__libc.o):6008f0ac A _XX
  3033. +/usr/lib/libdbm.sa(__libc.o):6008f1f4 A __9streambuf$_list_all
  3034. +/usr/lib/libdbm.sa(__libc.o):6008f214 A ____brk_addr
  3035. +/usr/lib/libdbm.sa(__libc.o):6008f01c A ___ctype_b
  3036. +/usr/lib/libdbm.sa(__libc.o):6008f020 A ___ctype_tolower
  3037. +/usr/lib/libdbm.sa(__libc.o):6008f024 A ___ctype_toupper
  3038. +/usr/lib/libdbm.sa(__libc.o):6008f1fc A ___environ
  3039. +/usr/lib/libdbm.sa(__libc.o):6008f250 A ___exit_funcs
  3040. +/usr/lib/libdbm.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
  3041. +/usr/lib/libdbm.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
  3042. +/usr/lib/libdbm.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
  3043. +/usr/lib/libdbm.sa(__libc.o):6008f018 A ___new_handler
  3044. +/usr/lib/libdbm.sa(__libc.o):6008f1e4 A ___std_filebuf_0
  3045. +/usr/lib/libdbm.sa(__libc.o):6008f1e8 A ___std_filebuf_1
  3046. +/usr/lib/libdbm.sa(__libc.o):6008f1ec A ___std_filebuf_2
  3047. +/usr/lib/libdbm.sa(__libc.o):6008f278 A ___ttyname
  3048. +/usr/lib/libdbm.sa(__libc.o):6008f238 A __collate_info
  3049. +/usr/lib/libdbm.sa(__libc.o):6008f23c A __ctype_info
  3050. +/usr/lib/libdbm.sa(__libc.o):6008f028 A __echoit
  3051. +/usr/lib/libdbm.sa(__libc.o):6008f034 A __endwin
  3052. +/usr/lib/libdbm.sa(__libc.o):6008f288 A __gdbm_fetch_val
  3053. +/usr/lib/libdbm.sa(__libc.o):6008f280 A __gdbm_file
  3054. +/usr/lib/libdbm.sa(__libc.o):6008f284 A __gdbm_memory
  3055. +/usr/lib/libdbm.sa(__libc.o):6008f1f8 A __iob
  3056. +/usr/lib/libdbm.sa(__libc.o):6008f240 A __monetary_info
  3057. +/usr/lib/libdbm.sa(__libc.o):6008f234 A __null_auth
  3058. +/usr/lib/libdbm.sa(__libc.o):6008f244 A __numeric_info
  3059. +/usr/lib/libdbm.sa(__libc.o):6008f2ec A __obstack
  3060. +/usr/lib/libdbm.sa(__libc.o):6008f1c8 A __pfast
  3061. +/usr/lib/libdbm.sa(__libc.o):6008f02c A __rawmode
  3062. +/usr/lib/libdbm.sa(__libc.o):6008f1dc A __res
  3063. +/usr/lib/libdbm.sa(__libc.o):6008f04c A __res_iflg
  3064. +/usr/lib/libdbm.sa(__libc.o):6008f050 A __res_lflg
  3065. +/usr/lib/libdbm.sa(__libc.o):6008f270 A __res_opcodes
  3066. +/usr/lib/libdbm.sa(__libc.o):6008f274 A __res_resultcodes
  3067. +/usr/lib/libdbm.sa(__libc.o):6008f248 A __response_info
  3068. +/usr/lib/libdbm.sa(__libc.o):6008f2fc A __sigintr
  3069. +/usr/lib/libdbm.sa(__libc.o):6008f00c A __sys_errlist
  3070. +/usr/lib/libdbm.sa(__libc.o):6008f010 A __sys_nerr
  3071. +/usr/lib/libdbm.sa(__libc.o):6008f014 A __sys_siglist
  3072. +/usr/lib/libdbm.sa(__libc.o):6008f24c A __time_info
  3073. +/usr/lib/libdbm.sa(__libc.o):6008f05c A __tty
  3074. +/usr/lib/libdbm.sa(__libc.o):6008f040 A __tty_ch
  3075. +/usr/lib/libdbm.sa(__libc.o):6008f1cc A __unctrl
  3076. +/usr/lib/libdbm.sa(__libc.o):6008f2c8 A __vt$10istrstream$3ios
  3077. +/usr/lib/libdbm.sa(__libc.o):6008f2c4 A __vt$10ostrstream$3ios
  3078. +/usr/lib/libdbm.sa(__libc.o):6008f2e0 A __vt$11fstreambase$3ios
  3079. +/usr/lib/libdbm.sa(__libc.o):6008f2cc A __vt$13strstreambase$3ios
  3080. +/usr/lib/libdbm.sa(__libc.o):6008f2d4 A __vt$7fstream$3ios
  3081. +/usr/lib/libdbm.sa(__libc.o):6008f2ac A __vt$7ostream$3ios
  3082. +/usr/lib/libdbm.sa(__libc.o):6008f2dc A __vt$8ifstream$3ios
  3083. +/usr/lib/libdbm.sa(__libc.o):6008f2a4 A __vt$8iostream$3ios
  3084. +/usr/lib/libdbm.sa(__libc.o):6008f2d8 A __vt$8ofstream$3ios
  3085. +/usr/lib/libdbm.sa(__libc.o):6008f2c0 A __vt$9strstream$3ios
  3086. +/usr/lib/libdbm.sa(__libc.o):6008f2b4 A __vt$backupbuf
  3087. +/usr/lib/libdbm.sa(__libc.o):6008f2b0 A __vt$filebuf
  3088. +/usr/lib/libdbm.sa(__libc.o):6008f2bc A __vt$ios
  3089. +/usr/lib/libdbm.sa(__libc.o):6008f2a8 A __vt$istream$3ios
  3090. +/usr/lib/libdbm.sa(__libc.o):6008f2b8 A __vt$streambuf
  3091. +/usr/lib/libdbm.sa(__libc.o):6008f2d0 A __vt$strstreambuf
  3092. +/usr/lib/libdbm.sa(__libc.o):6008f27c A __win
  3093. +/usr/lib/libdbm.sa(__libc.o):6008f294 A _cerr
  3094. +/usr/lib/libdbm.sa(__libc.o):6008f298 A _cin
  3095. +/usr/lib/libdbm.sa(__libc.o):6008f29c A _clog
  3096. +/usr/lib/libdbm.sa(__libc.o):6008f290 A _cout
  3097. +/usr/lib/libdbm.sa(__libc.o):6008f058 A _curscr
  3098. +/usr/lib/libdbm.sa(__libc.o):6008f228 A _daylight
  3099. +/usr/lib/libdbm.sa(__libc.o):6008f200 A _errno
  3100. +/usr/lib/libdbm.sa(__libc.o):6008f1d0 A _gdbm_errno
  3101. +/usr/lib/libdbm.sa(__libc.o):6008f28c A _gdbm_version
  3102. +/usr/lib/libdbm.sa(__libc.o):6008f008 A _h_errlist
  3103. +/usr/lib/libdbm.sa(__libc.o):6008f1d8 A _h_errno
  3104. +/usr/lib/libdbm.sa(__libc.o):6008f2a0 A _h_nerr
  3105. +/usr/lib/libdbm.sa(__libc.o):6008f1c4 A _normtty
  3106. +/usr/lib/libdbm.sa(__libc.o):6008f1f0 A _not_open_filebuf
  3107. +/usr/lib/libdbm.sa(__libc.o):6008f204 A _optarg
  3108. +/usr/lib/libdbm.sa(__libc.o):6008f20c A _opterr
  3109. +/usr/lib/libdbm.sa(__libc.o):6008f208 A _optind
  3110. +/usr/lib/libdbm.sa(__libc.o):6008f2e4 A _optopt
  3111. +/usr/lib/libdbm.sa(__libc.o):6008f218 A _ospeed
  3112. +/usr/lib/libdbm.sa(__libc.o):6008f26c A _re_max_failures
  3113. +/usr/lib/libdbm.sa(__libc.o):6008f210 A _re_syntax_options
  3114. +/usr/lib/libdbm.sa(__libc.o):6008f1e0 A _rexecoptions
  3115. +/usr/lib/libdbm.sa(__libc.o):6008f230 A _rpc_createerr
  3116. +/usr/lib/libdbm.sa(__libc.o):6008f25c A _stderr
  3117. +/usr/lib/libdbm.sa(__libc.o):6008f254 A _stdin
  3118. +/usr/lib/libdbm.sa(__libc.o):6008f258 A _stdout
  3119. +/usr/lib/libdbm.sa(__libc.o):6008f054 A _stdscr
  3120. +/usr/lib/libdbm.sa(__libc.o):6008f2e8 A _svc_fdset
  3121. +/usr/lib/libdbm.sa(__libc.o):6008f224 A _timezone
  3122. +/usr/lib/libdbm.sa(__libc.o):6008f21c A _tputs_baud_rate
  3123. +/usr/lib/libdbm.sa(__libc.o):6008f038 A _ttytype
  3124. +/usr/lib/libdbm.sa(__libc.o):6008f220 A _tzname
  3125. +/usr/lib/libgcc.sa(__libc.o):00001000 a __GOT_SIZE
  3126. +/usr/lib/libgcc.sa(__libc.o):6008f0b0 A _AL
  3127. +/usr/lib/libgcc.sa(__libc.o):6008f198 A _AL_PARM
  3128. +/usr/lib/libgcc.sa(__libc.o):6008f060 A _AM
  3129. +/usr/lib/libgcc.sa(__libc.o):6008f0b4 A _BC
  3130. +/usr/lib/libgcc.sa(__libc.o):6008f064 A _BS
  3131. +/usr/lib/libgcc.sa(__libc.o):6008f0bc A _BT
  3132. +/usr/lib/libgcc.sa(__libc.o):6008f068 A _CA
  3133. +/usr/lib/libgcc.sa(__libc.o):6008f0c0 A _CD
  3134. +/usr/lib/libgcc.sa(__libc.o):6008f0c4 A _CE
  3135. +/usr/lib/libgcc.sa(__libc.o):6008f0c8 A _CL
  3136. +/usr/lib/libgcc.sa(__libc.o):6008f0cc A _CM
  3137. +/usr/lib/libgcc.sa(__libc.o):6008f048 A _COLS
  3138. +/usr/lib/libgcc.sa(__libc.o):6008f0d0 A _CR
  3139. +/usr/lib/libgcc.sa(__libc.o):6008f0d4 A _CS
  3140. +/usr/lib/libgcc.sa(__libc.o):6008f06c A _DA
  3141. +/usr/lib/libgcc.sa(__libc.o):6008f070 A _DB
  3142. +/usr/lib/libgcc.sa(__libc.o):6008f0d8 A _DC
  3143. +/usr/lib/libgcc.sa(__libc.o):6008f0dc A _DL
  3144. +/usr/lib/libgcc.sa(__libc.o):6008f19c A _DL_PARM
  3145. +/usr/lib/libgcc.sa(__libc.o):6008f0e0 A _DM
  3146. +/usr/lib/libgcc.sa(__libc.o):6008f0e4 A _DO
  3147. +/usr/lib/libgcc.sa(__libc.o):6008f1a4 A _DOWN_PARM
  3148. +/usr/lib/libgcc.sa(__libc.o):6008f03c A _Def_term
  3149. +/usr/lib/libgcc.sa(__libc.o):6008f0e8 A _ED
  3150. +/usr/lib/libgcc.sa(__libc.o):6008f0ec A _EI
  3151. +/usr/lib/libgcc.sa(__libc.o):6008f074 A _EO
  3152. +/usr/lib/libgcc.sa(__libc.o):6008f1b8 A _GT
  3153. +/usr/lib/libgcc.sa(__libc.o):6008f078 A _HC
  3154. +/usr/lib/libgcc.sa(__libc.o):6008f118 A _HO
  3155. +/usr/lib/libgcc.sa(__libc.o):6008f07c A _HZ
  3156. +/usr/lib/libgcc.sa(__libc.o):6008f11c A _IC
  3157. +/usr/lib/libgcc.sa(__libc.o):6008f120 A _IM
  3158. +/usr/lib/libgcc.sa(__libc.o):6008f080 A _IN
  3159. +/usr/lib/libgcc.sa(__libc.o):6008f124 A _IP
  3160. +/usr/lib/libgcc.sa(__libc.o):6008f0f0 A _K0
  3161. +/usr/lib/libgcc.sa(__libc.o):6008f0f4 A _K1
  3162. +/usr/lib/libgcc.sa(__libc.o):6008f0f8 A _K2
  3163. +/usr/lib/libgcc.sa(__libc.o):6008f0fc A _K3
  3164. +/usr/lib/libgcc.sa(__libc.o):6008f100 A _K4
  3165. +/usr/lib/libgcc.sa(__libc.o):6008f104 A _K5
  3166. +/usr/lib/libgcc.sa(__libc.o):6008f108 A _K6
  3167. +/usr/lib/libgcc.sa(__libc.o):6008f10c A _K7
  3168. +/usr/lib/libgcc.sa(__libc.o):6008f110 A _K8
  3169. +/usr/lib/libgcc.sa(__libc.o):6008f114 A _K9
  3170. +/usr/lib/libgcc.sa(__libc.o):6008f128 A _KD
  3171. +/usr/lib/libgcc.sa(__libc.o):6008f12c A _KE
  3172. +/usr/lib/libgcc.sa(__libc.o):6008f130 A _KH
  3173. +/usr/lib/libgcc.sa(__libc.o):6008f134 A _KL
  3174. +/usr/lib/libgcc.sa(__libc.o):6008f138 A _KR
  3175. +/usr/lib/libgcc.sa(__libc.o):6008f13c A _KS
  3176. +/usr/lib/libgcc.sa(__libc.o):6008f140 A _KU
  3177. +/usr/lib/libgcc.sa(__libc.o):6008f1a8 A _LEFT_PARM
  3178. +/usr/lib/libgcc.sa(__libc.o):6008f044 A _LINES
  3179. +/usr/lib/libgcc.sa(__libc.o):6008f144 A _LL
  3180. +/usr/lib/libgcc.sa(__libc.o):6008f148 A _MA
  3181. +/usr/lib/libgcc.sa(__libc.o):6008f084 A _MI
  3182. +/usr/lib/libgcc.sa(__libc.o):6008f088 A _MS
  3183. +/usr/lib/libgcc.sa(__libc.o):6008f030 A _My_term
  3184. +/usr/lib/libgcc.sa(__libc.o):6008f08c A _NC
  3185. +/usr/lib/libgcc.sa(__libc.o):6008f14c A _ND
  3186. +/usr/lib/libgcc.sa(__libc.o):6008f150 A _NL
  3187. +/usr/lib/libgcc.sa(__libc.o):6008f1bc A _NONL
  3188. +/usr/lib/libgcc.sa(__libc.o):6008f090 A _NS
  3189. +/usr/lib/libgcc.sa(__libc.o):6008f094 A _OS
  3190. +/usr/lib/libgcc.sa(__libc.o):6008f1b0 A _PC
  3191. +/usr/lib/libgcc.sa(__libc.o):6008f154 A _RC
  3192. +/usr/lib/libgcc.sa(__libc.o):6008f1ac A _RIGHT_PARM
  3193. +/usr/lib/libgcc.sa(__libc.o):6008f158 A _SC
  3194. +/usr/lib/libgcc.sa(__libc.o):6008f15c A _SE
  3195. +/usr/lib/libgcc.sa(__libc.o):6008f160 A _SF
  3196. +/usr/lib/libgcc.sa(__libc.o):6008f164 A _SO
  3197. +/usr/lib/libgcc.sa(__libc.o):6008f168 A _SR
  3198. +/usr/lib/libgcc.sa(__libc.o):6008f16c A _TA
  3199. +/usr/lib/libgcc.sa(__libc.o):6008f170 A _TE
  3200. +/usr/lib/libgcc.sa(__libc.o):6008f174 A _TI
  3201. +/usr/lib/libgcc.sa(__libc.o):6008f178 A _UC
  3202. +/usr/lib/libgcc.sa(__libc.o):6008f17c A _UE
  3203. +/usr/lib/libgcc.sa(__libc.o):6008f098 A _UL
  3204. +/usr/lib/libgcc.sa(__libc.o):6008f180 A _UP
  3205. +/usr/lib/libgcc.sa(__libc.o):6008f1c0 A _UPPERCASE
  3206. +/usr/lib/libgcc.sa(__libc.o):6008f1a0 A _UP_PARM
  3207. +/usr/lib/libgcc.sa(__libc.o):6008f188 A _US
  3208. +/usr/lib/libgcc.sa(__libc.o):6008f18c A _VB
  3209. +/usr/lib/libgcc.sa(__libc.o):6008f194 A _VE
  3210. +/usr/lib/libgcc.sa(__libc.o):6008f190 A _VS
  3211. +/usr/lib/libgcc.sa(__libc.o):6008f09c A _XB
  3212. +/usr/lib/libgcc.sa(__libc.o):6008f0a0 A _XN
  3213. +/usr/lib/libgcc.sa(__libc.o):6008f0a8 A _XS
  3214. +/usr/lib/libgcc.sa(__libc.o):6008f0a4 A _XT
  3215. +/usr/lib/libgcc.sa(__libc.o):6008f0ac A _XX
  3216. +/usr/lib/libgcc.sa(__libc.o):6008f1f4 A __9streambuf$_list_all
  3217. +/usr/lib/libgcc.sa(__libc.o):6008f214 A ____brk_addr
  3218. +/usr/lib/libgcc.sa(__libc.o):6008f01c A ___ctype_b
  3219. +/usr/lib/libgcc.sa(__libc.o):6008f020 A ___ctype_tolower
  3220. +/usr/lib/libgcc.sa(__libc.o):6008f024 A ___ctype_toupper
  3221. +/usr/lib/libgcc.sa(__libc.o):6008f1fc A ___environ
  3222. +/usr/lib/libgcc.sa(__libc.o):6008f250 A ___exit_funcs
  3223. +/usr/lib/libgcc.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
  3224. +/usr/lib/libgcc.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
  3225. +/usr/lib/libgcc.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
  3226. +/usr/lib/libgcc.sa(__libc.o):6008f018 A ___new_handler
  3227. +/usr/lib/libgcc.sa(__libc.o):6008f1e4 A ___std_filebuf_0
  3228. +/usr/lib/libgcc.sa(__libc.o):6008f1e8 A ___std_filebuf_1
  3229. +/usr/lib/libgcc.sa(__libc.o):6008f1ec A ___std_filebuf_2
  3230. +/usr/lib/libgcc.sa(__libc.o):6008f278 A ___ttyname
  3231. +/usr/lib/libgcc.sa(__libc.o):6008f238 A __collate_info
  3232. +/usr/lib/libgcc.sa(__libc.o):6008f23c A __ctype_info
  3233. +/usr/lib/libgcc.sa(__libc.o):6008f028 A __echoit
  3234. +/usr/lib/libgcc.sa(__libc.o):6008f034 A __endwin
  3235. +/usr/lib/libgcc.sa(__libc.o):6008f288 A __gdbm_fetch_val
  3236. +/usr/lib/libgcc.sa(__libc.o):6008f280 A __gdbm_file
  3237. +/usr/lib/libgcc.sa(__libc.o):6008f284 A __gdbm_memory
  3238. +/usr/lib/libgcc.sa(__libc.o):6008f1f8 A __iob
  3239. +/usr/lib/libgcc.sa(__libc.o):6008f240 A __monetary_info
  3240. +/usr/lib/libgcc.sa(__libc.o):6008f234 A __null_auth
  3241. +/usr/lib/libgcc.sa(__libc.o):6008f244 A __numeric_info
  3242. +/usr/lib/libgcc.sa(__libc.o):6008f2ec A __obstack
  3243. +/usr/lib/libgcc.sa(__libc.o):6008f1c8 A __pfast
  3244. +/usr/lib/libgcc.sa(__libc.o):6008f02c A __rawmode
  3245. +/usr/lib/libgcc.sa(__libc.o):6008f1dc A __res
  3246. +/usr/lib/libgcc.sa(__libc.o):6008f04c A __res_iflg
  3247. +/usr/lib/libgcc.sa(__libc.o):6008f050 A __res_lflg
  3248. +/usr/lib/libgcc.sa(__libc.o):6008f270 A __res_opcodes
  3249. +/usr/lib/libgcc.sa(__libc.o):6008f274 A __res_resultcodes
  3250. +/usr/lib/libgcc.sa(__libc.o):6008f248 A __response_info
  3251. +/usr/lib/libgcc.sa(__libc.o):6008f2fc A __sigintr
  3252. +/usr/lib/libgcc.sa(__libc.o):6008f00c A __sys_errlist
  3253. +/usr/lib/libgcc.sa(__libc.o):6008f010 A __sys_nerr
  3254. +/usr/lib/libgcc.sa(__libc.o):6008f014 A __sys_siglist
  3255. +/usr/lib/libgcc.sa(__libc.o):6008f24c A __time_info
  3256. +/usr/lib/libgcc.sa(__libc.o):6008f05c A __tty
  3257. +/usr/lib/libgcc.sa(__libc.o):6008f040 A __tty_ch
  3258. +/usr/lib/libgcc.sa(__libc.o):6008f1cc A __unctrl
  3259. +/usr/lib/libgcc.sa(__libc.o):6008f2c8 A __vt$10istrstream$3ios
  3260. +/usr/lib/libgcc.sa(__libc.o):6008f2c4 A __vt$10ostrstream$3ios
  3261. +/usr/lib/libgcc.sa(__libc.o):6008f2e0 A __vt$11fstreambase$3ios
  3262. +/usr/lib/libgcc.sa(__libc.o):6008f2cc A __vt$13strstreambase$3ios
  3263. +/usr/lib/libgcc.sa(__libc.o):6008f2d4 A __vt$7fstream$3ios
  3264. +/usr/lib/libgcc.sa(__libc.o):6008f2ac A __vt$7ostream$3ios
  3265. +/usr/lib/libgcc.sa(__libc.o):6008f2dc A __vt$8ifstream$3ios
  3266. +/usr/lib/libgcc.sa(__libc.o):6008f2a4 A __vt$8iostream$3ios
  3267. +/usr/lib/libgcc.sa(__libc.o):6008f2d8 A __vt$8ofstream$3ios
  3268. +/usr/lib/libgcc.sa(__libc.o):6008f2c0 A __vt$9strstream$3ios
  3269. +/usr/lib/libgcc.sa(__libc.o):6008f2b4 A __vt$backupbuf
  3270. +/usr/lib/libgcc.sa(__libc.o):6008f2b0 A __vt$filebuf
  3271. +/usr/lib/libgcc.sa(__libc.o):6008f2bc A __vt$ios
  3272. +/usr/lib/libgcc.sa(__libc.o):6008f2a8 A __vt$istream$3ios
  3273. +/usr/lib/libgcc.sa(__libc.o):6008f2b8 A __vt$streambuf
  3274. +/usr/lib/libgcc.sa(__libc.o):6008f2d0 A __vt$strstreambuf
  3275. +/usr/lib/libgcc.sa(__libc.o):6008f27c A __win
  3276. +/usr/lib/libgcc.sa(__libc.o):6008f294 A _cerr
  3277. +/usr/lib/libgcc.sa(__libc.o):6008f298 A _cin
  3278. +/usr/lib/libgcc.sa(__libc.o):6008f29c A _clog
  3279. +/usr/lib/libgcc.sa(__libc.o):6008f290 A _cout
  3280. +/usr/lib/libgcc.sa(__libc.o):6008f058 A _curscr
  3281. +/usr/lib/libgcc.sa(__libc.o):6008f228 A _daylight
  3282. +/usr/lib/libgcc.sa(__libc.o):6008f200 A _errno
  3283. +/usr/lib/libgcc.sa(__libc.o):6008f1d0 A _gdbm_errno
  3284. +/usr/lib/libgcc.sa(__libc.o):6008f28c A _gdbm_version
  3285. +/usr/lib/libgcc.sa(__libc.o):6008f008 A _h_errlist
  3286. +/usr/lib/libgcc.sa(__libc.o):6008f1d8 A _h_errno
  3287. +/usr/lib/libgcc.sa(__libc.o):6008f2a0 A _h_nerr
  3288. +/usr/lib/libgcc.sa(__libc.o):6008f1c4 A _normtty
  3289. +/usr/lib/libgcc.sa(__libc.o):6008f1f0 A _not_open_filebuf
  3290. +/usr/lib/libgcc.sa(__libc.o):6008f204 A _optarg
  3291. +/usr/lib/libgcc.sa(__libc.o):6008f20c A _opterr
  3292. +/usr/lib/libgcc.sa(__libc.o):6008f208 A _optind
  3293. +/usr/lib/libgcc.sa(__libc.o):6008f2e4 A _optopt
  3294. +/usr/lib/libgcc.sa(__libc.o):6008f218 A _ospeed
  3295. +/usr/lib/libgcc.sa(__libc.o):6008f26c A _re_max_failures
  3296. +/usr/lib/libgcc.sa(__libc.o):6008f210 A _re_syntax_options
  3297. +/usr/lib/libgcc.sa(__libc.o):6008f1e0 A _rexecoptions
  3298. +/usr/lib/libgcc.sa(__libc.o):6008f230 A _rpc_createerr
  3299. +/usr/lib/libgcc.sa(__libc.o):6008f25c A _stderr
  3300. +/usr/lib/libgcc.sa(__libc.o):6008f254 A _stdin
  3301. +/usr/lib/libgcc.sa(__libc.o):6008f258 A _stdout
  3302. +/usr/lib/libgcc.sa(__libc.o):6008f054 A _stdscr
  3303. +/usr/lib/libgcc.sa(__libc.o):6008f2e8 A _svc_fdset
  3304. +/usr/lib/libgcc.sa(__libc.o):6008f224 A _timezone
  3305. +/usr/lib/libgcc.sa(__libc.o):6008f21c A _tputs_baud_rate
  3306. +/usr/lib/libgcc.sa(__libc.o):6008f038 A _ttytype
  3307. +/usr/lib/libgcc.sa(__libc.o):6008f220 A _tzname
  3308. +/usr/lib/libm.sa(__libm.o):00000100 a __GOT_SIZE
  3309. +/usr/lib/libm.sa(__libm.o):600f7f08 A _signgam
  3310. +/usr/lib/libtermcap.sa(__libc.o):00001000 a __GOT_SIZE
  3311. +/usr/lib/libtermcap.sa(__libc.o):6008f0b0 A _AL
  3312. +/usr/lib/libtermcap.sa(__libc.o):6008f198 A _AL_PARM
  3313. +/usr/lib/libtermcap.sa(__libc.o):6008f060 A _AM
  3314. +/usr/lib/libtermcap.sa(__libc.o):6008f0b4 A _BC
  3315. +/usr/lib/libtermcap.sa(__libc.o):6008f064 A _BS
  3316. +/usr/lib/libtermcap.sa(__libc.o):6008f0bc A _BT
  3317. +/usr/lib/libtermcap.sa(__libc.o):6008f068 A _CA
  3318. +/usr/lib/libtermcap.sa(__libc.o):6008f0c0 A _CD
  3319. +/usr/lib/libtermcap.sa(__libc.o):6008f0c4 A _CE
  3320. +/usr/lib/libtermcap.sa(__libc.o):6008f0c8 A _CL
  3321. +/usr/lib/libtermcap.sa(__libc.o):6008f0cc A _CM
  3322. +/usr/lib/libtermcap.sa(__libc.o):6008f048 A _COLS
  3323. +/usr/lib/libtermcap.sa(__libc.o):6008f0d0 A _CR
  3324. +/usr/lib/libtermcap.sa(__libc.o):6008f0d4 A _CS
  3325. +/usr/lib/libtermcap.sa(__libc.o):6008f06c A _DA
  3326. +/usr/lib/libtermcap.sa(__libc.o):6008f070 A _DB
  3327. +/usr/lib/libtermcap.sa(__libc.o):6008f0d8 A _DC
  3328. +/usr/lib/libtermcap.sa(__libc.o):6008f0dc A _DL
  3329. +/usr/lib/libtermcap.sa(__libc.o):6008f19c A _DL_PARM
  3330. +/usr/lib/libtermcap.sa(__libc.o):6008f0e0 A _DM
  3331. +/usr/lib/libtermcap.sa(__libc.o):6008f0e4 A _DO
  3332. +/usr/lib/libtermcap.sa(__libc.o):6008f1a4 A _DOWN_PARM
  3333. +/usr/lib/libtermcap.sa(__libc.o):6008f03c A _Def_term
  3334. +/usr/lib/libtermcap.sa(__libc.o):6008f0e8 A _ED
  3335. +/usr/lib/libtermcap.sa(__libc.o):6008f0ec A _EI
  3336. +/usr/lib/libtermcap.sa(__libc.o):6008f074 A _EO
  3337. +/usr/lib/libtermcap.sa(__libc.o):6008f1b8 A _GT
  3338. +/usr/lib/libtermcap.sa(__libc.o):6008f078 A _HC
  3339. +/usr/lib/libtermcap.sa(__libc.o):6008f118 A _HO
  3340. +/usr/lib/libtermcap.sa(__libc.o):6008f07c A _HZ
  3341. +/usr/lib/libtermcap.sa(__libc.o):6008f11c A _IC
  3342. +/usr/lib/libtermcap.sa(__libc.o):6008f120 A _IM
  3343. +/usr/lib/libtermcap.sa(__libc.o):6008f080 A _IN
  3344. +/usr/lib/libtermcap.sa(__libc.o):6008f124 A _IP
  3345. +/usr/lib/libtermcap.sa(__libc.o):6008f0f0 A _K0
  3346. +/usr/lib/libtermcap.sa(__libc.o):6008f0f4 A _K1
  3347. +/usr/lib/libtermcap.sa(__libc.o):6008f0f8 A _K2
  3348. +/usr/lib/libtermcap.sa(__libc.o):6008f0fc A _K3
  3349. +/usr/lib/libtermcap.sa(__libc.o):6008f100 A _K4
  3350. +/usr/lib/libtermcap.sa(__libc.o):6008f104 A _K5
  3351. +/usr/lib/libtermcap.sa(__libc.o):6008f108 A _K6
  3352. +/usr/lib/libtermcap.sa(__libc.o):6008f10c A _K7
  3353. +/usr/lib/libtermcap.sa(__libc.o):6008f110 A _K8
  3354. +/usr/lib/libtermcap.sa(__libc.o):6008f114 A _K9
  3355. +/usr/lib/libtermcap.sa(__libc.o):6008f128 A _KD
  3356. +/usr/lib/libtermcap.sa(__libc.o):6008f12c A _KE
  3357. +/usr/lib/libtermcap.sa(__libc.o):6008f130 A _KH
  3358. +/usr/lib/libtermcap.sa(__libc.o):6008f134 A _KL
  3359. +/usr/lib/libtermcap.sa(__libc.o):6008f138 A _KR
  3360. +/usr/lib/libtermcap.sa(__libc.o):6008f13c A _KS
  3361. +/usr/lib/libtermcap.sa(__libc.o):6008f140 A _KU
  3362. +/usr/lib/libtermcap.sa(__libc.o):6008f1a8 A _LEFT_PARM
  3363. +/usr/lib/libtermcap.sa(__libc.o):6008f044 A _LINES
  3364. +/usr/lib/libtermcap.sa(__libc.o):6008f144 A _LL
  3365. +/usr/lib/libtermcap.sa(__libc.o):6008f148 A _MA
  3366. +/usr/lib/libtermcap.sa(__libc.o):6008f084 A _MI
  3367. +/usr/lib/libtermcap.sa(__libc.o):6008f088 A _MS
  3368. +/usr/lib/libtermcap.sa(__libc.o):6008f030 A _My_term
  3369. +/usr/lib/libtermcap.sa(__libc.o):6008f08c A _NC
  3370. +/usr/lib/libtermcap.sa(__libc.o):6008f14c A _ND
  3371. +/usr/lib/libtermcap.sa(__libc.o):6008f150 A _NL
  3372. +/usr/lib/libtermcap.sa(__libc.o):6008f1bc A _NONL
  3373. +/usr/lib/libtermcap.sa(__libc.o):6008f090 A _NS
  3374. +/usr/lib/libtermcap.sa(__libc.o):6008f094 A _OS
  3375. +/usr/lib/libtermcap.sa(__libc.o):6008f1b0 A _PC
  3376. +/usr/lib/libtermcap.sa(__libc.o):6008f154 A _RC
  3377. +/usr/lib/libtermcap.sa(__libc.o):6008f1ac A _RIGHT_PARM
  3378. +/usr/lib/libtermcap.sa(__libc.o):6008f158 A _SC
  3379. +/usr/lib/libtermcap.sa(__libc.o):6008f15c A _SE
  3380. +/usr/lib/libtermcap.sa(__libc.o):6008f160 A _SF
  3381. +/usr/lib/libtermcap.sa(__libc.o):6008f164 A _SO
  3382. +/usr/lib/libtermcap.sa(__libc.o):6008f168 A _SR
  3383. +/usr/lib/libtermcap.sa(__libc.o):6008f16c A _TA
  3384. +/usr/lib/libtermcap.sa(__libc.o):6008f170 A _TE
  3385. +/usr/lib/libtermcap.sa(__libc.o):6008f174 A _TI
  3386. +/usr/lib/libtermcap.sa(__libc.o):6008f178 A _UC
  3387. +/usr/lib/libtermcap.sa(__libc.o):6008f17c A _UE
  3388. +/usr/lib/libtermcap.sa(__libc.o):6008f098 A _UL
  3389. +/usr/lib/libtermcap.sa(__libc.o):6008f180 A _UP
  3390. +/usr/lib/libtermcap.sa(__libc.o):6008f1c0 A _UPPERCASE
  3391. +/usr/lib/libtermcap.sa(__libc.o):6008f1a0 A _UP_PARM
  3392. +/usr/lib/libtermcap.sa(__libc.o):6008f188 A _US
  3393. +/usr/lib/libtermcap.sa(__libc.o):6008f18c A _VB
  3394. +/usr/lib/libtermcap.sa(__libc.o):6008f194 A _VE
  3395. +/usr/lib/libtermcap.sa(__libc.o):6008f190 A _VS
  3396. +/usr/lib/libtermcap.sa(__libc.o):6008f09c A _XB
  3397. +/usr/lib/libtermcap.sa(__libc.o):6008f0a0 A _XN
  3398. +/usr/lib/libtermcap.sa(__libc.o):6008f0a8 A _XS
  3399. +/usr/lib/libtermcap.sa(__libc.o):6008f0a4 A _XT
  3400. +/usr/lib/libtermcap.sa(__libc.o):6008f0ac A _XX
  3401. +/usr/lib/libtermcap.sa(__libc.o):6008f1f4 A __9streambuf$_list_all
  3402. +/usr/lib/libtermcap.sa(__libc.o):6008f214 A ____brk_addr
  3403. +/usr/lib/libtermcap.sa(__libc.o):6008f01c A ___ctype_b
  3404. +/usr/lib/libtermcap.sa(__libc.o):6008f020 A ___ctype_tolower
  3405. +/usr/lib/libtermcap.sa(__libc.o):6008f024 A ___ctype_toupper
  3406. +/usr/lib/libtermcap.sa(__libc.o):6008f1fc A ___environ
  3407. +/usr/lib/libtermcap.sa(__libc.o):6008f250 A ___exit_funcs
  3408. +/usr/lib/libtermcap.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
  3409. +/usr/lib/libtermcap.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
  3410. +/usr/lib/libtermcap.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
  3411. +/usr/lib/libtermcap.sa(__libc.o):6008f018 A ___new_handler
  3412. +/usr/lib/libtermcap.sa(__libc.o):6008f1e4 A ___std_filebuf_0
  3413. +/usr/lib/libtermcap.sa(__libc.o):6008f1e8 A ___std_filebuf_1
  3414. +/usr/lib/libtermcap.sa(__libc.o):6008f1ec A ___std_filebuf_2
  3415. +/usr/lib/libtermcap.sa(__libc.o):6008f278 A ___ttyname
  3416. +/usr/lib/libtermcap.sa(__libc.o):6008f238 A __collate_info
  3417. +/usr/lib/libtermcap.sa(__libc.o):6008f23c A __ctype_info
  3418. +/usr/lib/libtermcap.sa(__libc.o):6008f028 A __echoit
  3419. +/usr/lib/libtermcap.sa(__libc.o):6008f034 A __endwin
  3420. +/usr/lib/libtermcap.sa(__libc.o):6008f288 A __gdbm_fetch_val
  3421. +/usr/lib/libtermcap.sa(__libc.o):6008f280 A __gdbm_file
  3422. +/usr/lib/libtermcap.sa(__libc.o):6008f284 A __gdbm_memory
  3423. +/usr/lib/libtermcap.sa(__libc.o):6008f1f8 A __iob
  3424. +/usr/lib/libtermcap.sa(__libc.o):6008f240 A __monetary_info
  3425. +/usr/lib/libtermcap.sa(__libc.o):6008f234 A __null_auth
  3426. +/usr/lib/libtermcap.sa(__libc.o):6008f244 A __numeric_info
  3427. +/usr/lib/libtermcap.sa(__libc.o):6008f2ec A __obstack
  3428. +/usr/lib/libtermcap.sa(__libc.o):6008f1c8 A __pfast
  3429. +/usr/lib/libtermcap.sa(__libc.o):6008f02c A __rawmode
  3430. +/usr/lib/libtermcap.sa(__libc.o):6008f1dc A __res
  3431. +/usr/lib/libtermcap.sa(__libc.o):6008f04c A __res_iflg
  3432. +/usr/lib/libtermcap.sa(__libc.o):6008f050 A __res_lflg
  3433. +/usr/lib/libtermcap.sa(__libc.o):6008f270 A __res_opcodes
  3434. +/usr/lib/libtermcap.sa(__libc.o):6008f274 A __res_resultcodes
  3435. +/usr/lib/libtermcap.sa(__libc.o):6008f248 A __response_info
  3436. +/usr/lib/libtermcap.sa(__libc.o):6008f2fc A __sigintr
  3437. +/usr/lib/libtermcap.sa(__libc.o):6008f00c A __sys_errlist
  3438. +/usr/lib/libtermcap.sa(__libc.o):6008f010 A __sys_nerr
  3439. +/usr/lib/libtermcap.sa(__libc.o):6008f014 A __sys_siglist
  3440. +/usr/lib/libtermcap.sa(__libc.o):6008f24c A __time_info
  3441. +/usr/lib/libtermcap.sa(__libc.o):6008f05c A __tty
  3442. +/usr/lib/libtermcap.sa(__libc.o):6008f040 A __tty_ch
  3443. +/usr/lib/libtermcap.sa(__libc.o):6008f1cc A __unctrl
  3444. +/usr/lib/libtermcap.sa(__libc.o):6008f2c8 A __vt$10istrstream$3ios
  3445. +/usr/lib/libtermcap.sa(__libc.o):6008f2c4 A __vt$10ostrstream$3ios
  3446. +/usr/lib/libtermcap.sa(__libc.o):6008f2e0 A __vt$11fstreambase$3ios
  3447. +/usr/lib/libtermcap.sa(__libc.o):6008f2cc A __vt$13strstreambase$3ios
  3448. +/usr/lib/libtermcap.sa(__libc.o):6008f2d4 A __vt$7fstream$3ios
  3449. +/usr/lib/libtermcap.sa(__libc.o):6008f2ac A __vt$7ostream$3ios
  3450. +/usr/lib/libtermcap.sa(__libc.o):6008f2dc A __vt$8ifstream$3ios
  3451. +/usr/lib/libtermcap.sa(__libc.o):6008f2a4 A __vt$8iostream$3ios
  3452. +/usr/lib/libtermcap.sa(__libc.o):6008f2d8 A __vt$8ofstream$3ios
  3453. +/usr/lib/libtermcap.sa(__libc.o):6008f2c0 A __vt$9strstream$3ios
  3454. +/usr/lib/libtermcap.sa(__libc.o):6008f2b4 A __vt$backupbuf
  3455. +/usr/lib/libtermcap.sa(__libc.o):6008f2b0 A __vt$filebuf
  3456. +/usr/lib/libtermcap.sa(__libc.o):6008f2bc A __vt$ios
  3457. +/usr/lib/libtermcap.sa(__libc.o):6008f2a8 A __vt$istream$3ios
  3458. +/usr/lib/libtermcap.sa(__libc.o):6008f2b8 A __vt$streambuf
  3459. +/usr/lib/libtermcap.sa(__libc.o):6008f2d0 A __vt$strstreambuf
  3460. +/usr/lib/libtermcap.sa(__libc.o):6008f27c A __win
  3461. +/usr/lib/libtermcap.sa(__libc.o):6008f294 A _cerr
  3462. +/usr/lib/libtermcap.sa(__libc.o):6008f298 A _cin
  3463. +/usr/lib/libtermcap.sa(__libc.o):6008f29c A _clog
  3464. +/usr/lib/libtermcap.sa(__libc.o):6008f290 A _cout
  3465. +/usr/lib/libtermcap.sa(__libc.o):6008f058 A _curscr
  3466. +/usr/lib/libtermcap.sa(__libc.o):6008f228 A _daylight
  3467. +/usr/lib/libtermcap.sa(__libc.o):6008f200 A _errno
  3468. +/usr/lib/libtermcap.sa(__libc.o):6008f1d0 A _gdbm_errno
  3469. +/usr/lib/libtermcap.sa(__libc.o):6008f28c A _gdbm_version
  3470. +/usr/lib/libtermcap.sa(__libc.o):6008f008 A _h_errlist
  3471. +/usr/lib/libtermcap.sa(__libc.o):6008f1d8 A _h_errno
  3472. +/usr/lib/libtermcap.sa(__libc.o):6008f2a0 A _h_nerr
  3473. +/usr/lib/libtermcap.sa(__libc.o):6008f1c4 A _normtty
  3474. +/usr/lib/libtermcap.sa(__libc.o):6008f1f0 A _not_open_filebuf
  3475. +/usr/lib/libtermcap.sa(__libc.o):6008f204 A _optarg
  3476. +/usr/lib/libtermcap.sa(__libc.o):6008f20c A _opterr
  3477. +/usr/lib/libtermcap.sa(__libc.o):6008f208 A _optind
  3478. +/usr/lib/libtermcap.sa(__libc.o):6008f2e4 A _optopt
  3479. +/usr/lib/libtermcap.sa(__libc.o):6008f218 A _ospeed
  3480. +/usr/lib/libtermcap.sa(__libc.o):6008f26c A _re_max_failures
  3481. +/usr/lib/libtermcap.sa(__libc.o):6008f210 A _re_syntax_options
  3482. +/usr/lib/libtermcap.sa(__libc.o):6008f1e0 A _rexecoptions
  3483. +/usr/lib/libtermcap.sa(__libc.o):6008f230 A _rpc_createerr
  3484. +/usr/lib/libtermcap.sa(__libc.o):6008f25c A _stderr
  3485. +/usr/lib/libtermcap.sa(__libc.o):6008f254 A _stdin
  3486. +/usr/lib/libtermcap.sa(__libc.o):6008f258 A _stdout
  3487. +/usr/lib/libtermcap.sa(__libc.o):6008f054 A _stdscr
  3488. +/usr/lib/libtermcap.sa(__libc.o):6008f2e8 A _svc_fdset
  3489. +/usr/lib/libtermcap.sa(__libc.o):6008f224 A _timezone
  3490. +/usr/lib/libtermcap.sa(__libc.o):6008f21c A _tputs_baud_rate
  3491. +/usr/lib/libtermcap.sa(__libc.o):6008f038 A _ttytype
  3492. +/usr/lib/libtermcap.sa(__libc.o):6008f220 A _tzname
  3493. diff -u --recursive --new-file isode-8.0/jump/jump.vars isode-8.0-linux/jump/jump.vars
  3494. --- isode-8.0/jump/jump.vars    Thu Jan  1 01:00:00 1970
  3495. +++ isode-8.0-linux/jump/jump.vars    Thu Aug 26 15:46:06 1993
  3496. @@ -0,0 +1,325 @@
  3497. +00000018 D __ZptrtabRONOT       libisode       RONOT_tables
  3498. +00000024 D __ZRONOT_mod         libisode       RONOT_tables
  3499. +00000004 D _ronotversion        libisode       ronotvrsn
  3500. +00000074 D __ZptrtabROS         libisode       ROS_tables
  3501. +00000024 D __ZROS_mod           libisode       ROS_tables
  3502. +00000004 C _rosap_operation     libisode       ROS_tables
  3503. +00000004 C _rosap_error         libisode       ROS_tables
  3504. +00000004 C _rosap_type          libisode       ROS_tables
  3505. +00000004 C _rosap_id            libisode       ROS_tables
  3506. +00000004 C _rosap_null          libisode       ROS_tables
  3507. +00000004 C _rosap_linked        libisode       ROS_tables
  3508. +00000004 C _rosap_lnull         libisode       ROS_tables
  3509. +00000004 C _rosap_data          libisode       ROS_tables
  3510. +00000004 C _rosap_reason        libisode       ROS_tables
  3511. +00000004 D _rosapversion        libisode       rosapvrsn
  3512. +0000008c D __ZptrtabRTS         libisode       RTS_tables
  3513. +00000024 D __ZRTS_mod           libisode       RTS_tables
  3514. +00000004 C _rtsap_priority      libisode       RTS_tables
  3515. +00000004 D _rtsapversion        libisode       rtsapvrsn
  3516. +00000004 D _acsap_lookup        libisode       acsapdse
  3517. +000000d8 D __ZptrtabACS         libisode       ACS_tables
  3518. +00000024 D __ZACS_mod           libisode       ACS_tables
  3519. +00000068 D __ZptrtabOACS        libisode       OACS_tables
  3520. +00000024 D __ZOACS_mod          libisode       OACS_tables
  3521. +00000014 D __ZptrtabDSE         libisode       DSE_tables
  3522. +00000024 D __ZDSE_mod           libisode       DSE_tables
  3523. +00000078 D __ZptrtabDASE        libisode       DASE_tables
  3524. +00000024 D __ZDASE_mod          libisode       DASE_tables
  3525. +00000004 D _acsapversion        libisode       acsapvrsn
  3526. +00000018 D _preq_pairs          libisode       psaprovider
  3527. +00000060 D _sreq_pairs          libisode       psaprovider
  3528. +0000013c D __ZptrtabPS          libisode       PS_tables
  3529. +00000024 D __ZPS_mod            libisode       PS_tables
  3530. +00000004 D _psap2version        libisode       psap2vrsn
  3531. +00000004 D _NullParm            libisode       UPEPY-52
  3532. +00000004 D _xlevel              libisode       prnt
  3533. +00000004 D _tabed               libisode       prnt
  3534. +00000004 D _xpushed             libisode       prnt
  3535. +00000004 D _vfnx                libisode       vprint
  3536. +00000004 D _vfp                 libisode       vprint
  3537. +00000060 D __ZptrtabUNIV        libisode       UNIV_tables
  3538. +00000024 D __ZUNIV_mod          libisode       UNIV_tables
  3539. +0000005c D _pepy_strings        libisode       pepsy_str
  3540. +00000400 D _PY_pepy             libisode       py_advise
  3541. +00000030 D _dmsize              libisode       gtime
  3542. +00000004 C _Len                 libisode       pe2qb_f
  3543. +00000004 C _Qcp                 libisode       pe2qb_f
  3544. +00000004 C _Ecp                 libisode       pe2qb_f
  3545. +00000004 D _pe_list             libisode       pe_alloc
  3546. +00000004 C _pe_allocs           libisode       pe_alloc
  3547. +00000004 C _pe_frees            libisode       pe_alloc
  3548. +00000004 C _pe_most             libisode       pe_alloc
  3549. +00000010 D _pe_classlist        libisode       pl_tables
  3550. +00000004 D _pe_maxclass         libisode       pl_tables
  3551. +00000074 D _pe_univlist         libisode       pl_tables
  3552. +00000004 D _pe_maxuniv          libisode       pl_tables
  3553. +00000004 D _pe_maxappl          libisode       pl_tables
  3554. +00000004 D _pe_applist          libisode       pl_tables
  3555. +00000004 D _pe_maxpriv          libisode       pl_tables
  3556. +00000004 D _pe_privlist         libisode       pl_tables
  3557. +00000004 D _ps_len_strategy     libisode       ps_get_abs
  3558. +00000004 D _Byteno              libisode       qbuf2pe_f
  3559. +00000004 D _Qbrefs              libisode       qbuf2pe_f
  3560. +00000004 D _Hqb                 libisode       qbuf2pe_f
  3561. +00000004 D _Fqb                 libisode       qbuf2pe_f
  3562. +00000004 D _Qb                  libisode       qbuf2pe_f
  3563. +00000004 D _psapversion         libisode       psapvrsn
  3564. +00000004 D _ssapversion         libisode       ssapvrsn
  3565. +00000004 D __listen_opts        libisode       tsaplisten
  3566. +00000004 D _tsapversion         libisode       tsapvrsn
  3567. +00000004 D _direntversion       libisode       direntvrsn
  3568. +00000004 D _xselect_blocking_on_intr libisode       select
  3569. +00000004 D __iosignals_set      libisode       signals
  3570. +00000080 D _hex2nib             libisode       implode
  3571. +00000004 D _isodename           libisode       tailor
  3572. +00000004 D _isodebinpath        libisode       tailor
  3573. +00000004 D _isodesbinpath       libisode       tailor
  3574. +00000004 D _isodetcpath         libisode       tailor
  3575. +00000004 D _isodelogpath        libisode       tailor
  3576. +00000004 D __tailor_logging_only libisode       tailor
  3577. +00000020 D __compat_log         libisode       tailor
  3578. +00000004 D _compat_log          libisode       tailor
  3579. +00000020 D __addr_log           libisode       tailor
  3580. +00000004 D _addr_log            libisode       tailor
  3581. +00000020 D __tsap_log           libisode       tailor
  3582. +00000004 D _tsap_log            libisode       tailor
  3583. +00000020 D __ssap_log           libisode       tailor
  3584. +00000004 D _ssap_log            libisode       tailor
  3585. +00000020 D __psap_log           libisode       tailor
  3586. +00000004 D _psap_log            libisode       tailor
  3587. +00000020 D __psap2_log          libisode       tailor
  3588. +00000004 D _psap2_log           libisode       tailor
  3589. +00000020 D __acsap_log          libisode       tailor
  3590. +00000004 D _acsap_log           libisode       tailor
  3591. +00000020 D __rtsap_log          libisode       tailor
  3592. +00000004 D _rtsap_log           libisode       tailor
  3593. +00000020 D __rosap_log          libisode       tailor
  3594. +00000004 D _rosap_log           libisode       tailor
  3595. +00000004 D _ts_stacks           libisode       tailor
  3596. +000002a8 D _ts_interim          libisode       tailor
  3597. +00000004 D _ts_comm_nsap_default libisode       tailor
  3598. +00000004 D _ts_comm_x25_default libisode       tailor
  3599. +00000004 D _ts_comm_tcp_default libisode       tailor
  3600. +00000004 D _tsb_default_address libisode       tailor
  3601. +00000004 D _local_nsap          libisode       tailor
  3602. +00000004 D _nsap_default_stack  libisode       tailor
  3603. +00000004 D _ses_ab_timer        libisode       tailor
  3604. +00000004 D _ses_dn_timer        libisode       tailor
  3605. +00000004 D _ses_rf_timer        libisode       tailor
  3606. +00000004 D _ns_enabled          libisode       tailor
  3607. +00000004 D _ns_address          libisode       tailor
  3608. +00000044 C _ts_communities      libisode       tailor
  3609. +00000044 C _tsb_addresses       libisode       tailor
  3610. +00000044 C _tsb_communities     libisode       tailor
  3611. +00000100 D _chrcnv              libisode       chrcnv
  3612. +00000100 D _nochrcnv            libisode       nochrcnv
  3613. +00000004 D _compatversion       libisode       compatvrsn
  3614. +00000004 D _isodeversion        libisode       isodevrsn
  3615. +00000004 D _dsapversion         libdsap        dsapvrsn
  3616. +00000044 D __ZptrtabIF          libdsap        IF_tables
  3617. +00000024 D __ZIF_mod            libdsap        IF_tables
  3618. +00000038 D __ZptrtabThorn       libdsap        Thorn_tables
  3619. +00000024 D __ZThorn_mod         libdsap        Thorn_tables
  3620. +00000088 D __ZptrtabAF          libdsap        AF_tables
  3621. +00000024 D __ZAF_mod            libdsap        AF_tables
  3622. +00000124 D __ZptrtabDO          libdsap        DO_tables
  3623. +00000024 D __ZDO_mod            libdsap        DO_tables
  3624. +00000284 D __ZptrtabDAS         libdsap        DAS_tables
  3625. +00000024 D __ZDAS_mod           libdsap        DAS_tables
  3626. +0000017c D __ZptrtabQuipu       libdsap        Quipu_tables
  3627. +00000024 D __ZQuipu_mod         libdsap        Quipu_tables
  3628. +00000074 D __ZptrtabSA          libdsap        SA_tables
  3629. +00000024 D __ZSA_mod            libdsap        SA_tables
  3630. +0000007c D __ZptrtabNRS         libdsap        NRS_tables
  3631. +00000024 D __ZNRS_mod           libdsap        NRS_tables
  3632. +00000004 D _x500asversion       libdsap        x500asvrsn
  3633. +00000014 D _acl_sel             libdsap        acl
  3634. +00000004 C _t61_flag            libdsap        attrv
  3635. +00000004 C _crypt_flag          libdsap        attrv
  3636. +00000004 D _mydsadn             libdsap        ca
  3637. +00000004 C _dsa_dead            libdsap        ds_error
  3638. +00000004 D _NumEntries          libdsap        oid
  3639. +00000004 D _attrNumEntries      libdsap        oid
  3640. +00000004 D _ocNumEntries        libdsap        oid
  3641. +00000008 D _attr_index          libdsap        oid
  3642. +00000004 D _oc_load             libdsap        oid
  3643. +00000004 D _oc_macro_add        libdsap        oid
  3644. +00000004 C _f_table             libdsap        oid
  3645. +000012c0 C _OIDTable            libdsap        oid
  3646. +00001770 C _attrOIDTable        libdsap        oid
  3647. +000020d0 C _ocOIDTable          libdsap        oid
  3648. +00000004 D _NumMacro            libdsap        oid2
  3649. +0000a640 C _macro               libdsap        oid2
  3650. +00000004 D _print_parse_errors  libdsap        parse_error
  3651. +00000004 D _parse_status        libdsap        parse_error
  3652. +00000004 D _opt                 libdsap        parse_error
  3653. +00000004 D _parse_line          libdsap        parse_error
  3654. +00000004 D _acl_fn              libdsap        util
  3655. +00000004 D _parse_file          libdsap        file_print
  3656. +00000004 D _parse_rdn           libdsap        file_print
  3657. +00000004 C _file_attr_length    libdsap        file_enc
  3658. +00000004 D _avs_count           libdsap        attrt_print
  3659. +00000004 C _last_at             libdsap        attrt_print
  3660. +00000004 D _inherit_sntx        libdsap        as_print
  3661. +00000004 D _oc_avsprint         libdsap        avs_print
  3662. +00000004 D _oc_sntx             libdsap        avs_str
  3663. +00000004 D _oc_hier             libdsap        avs_str
  3664. +00000004 D _acl_sntx            libdsap        avs_str
  3665. +00000004 D _merge_acl           libdsap        avs_str
  3666. +00000004 D _ufn_indent          libdsap        dn_print
  3667. +00000004 D _syntax_dn           libdsap        dn_str
  3668. +00000004 D _ch_set              libdsap        string
  3669. +00000004 D _postal_indent       libdsap        post
  3670. +00000004 D _sizelimit           libdsap        conf
  3671. +00000004 D _timelimit           libdsap        conf
  3672. +00000004 D _oidtable            libdsap        conf
  3673. +00000004 D _tailfile            libdsap        conf
  3674. +00000004 D _isotailor           libdsap        conf
  3675. +00000004 D _dsa_address         libdsap        conf
  3676. +00000004 D _myname              libdsap        conf
  3677. +00000004 D _local_dit           libdsap        conf
  3678. +00000004 D _dishinit            libdsap        conf
  3679. +00000004 D _cache_timeout       libdsap        conf
  3680. +00000004 D _log_dsap            libdsap        conf
  3681. +00000004 D _log_stat            libdsap        conf
  3682. +00000004 D _oidformat           libdsap        conf
  3683. +00000004 D _mem_heap            libdsap        conf
  3684. +00000004 D _dsaoidtable         libdsap        conf
  3685. +00000004 D _dsatailfile         libdsap        conf
  3686. +00000004 D _treedir             libdsap        conf
  3687. +00000004 D _no_last_mod         libdsap        conf
  3688. +00000004 D _startup_update      libdsap        conf
  3689. +00000004 D _search_level        libdsap        conf
  3690. +00000004 D _read_only           libdsap        conf
  3691. +00000004 D _admin_size          libdsap        conf
  3692. +00000004 D _admin_time          libdsap        conf
  3693. +00000004 D _conn_timeout        libdsap        conf
  3694. +00000004 D _nsap_timeout        libdsap        conf
  3695. +00000004 D _slave_timeout       libdsap        conf
  3696. +00000004 D _retry_timeout       libdsap        conf
  3697. +00000004 D _watchdog_time       libdsap        conf
  3698. +00000004 D _watchdog_delta      libdsap        conf
  3699. +00000004 D _dsa_mode            libdsap        conf
  3700. +00000004 D _quipu_faststart     libdsap        conf
  3701. +00000004 C _dsap_id             libdsap        conf
  3702. +00000004 C _dsap_ad             libdsap        conf
  3703. +00000004 D _dsap_usage          libdsap        tai_args
  3704. +00000004 D _options             libdsap        tai_args
  3705. +00000004 D _list_top            libdsap        cache
  3706. +00000004 D _current_entry       libdsap        cache
  3707. +00000004 D _current_dn          libdsap        cache
  3708. +00000004 D _unrav_fn            libdsap        cache
  3709. +00000004 D _schema_fn           libdsap        cache
  3710. +00000004 C _at_alias            libdsap        entry
  3711. +00000004 C _at_objectclass      libdsap        entry
  3712. +00000004 D _database_root       libdsap        parse
  3713. +00000004 D _local_master_size   libdsap        parse
  3714. +00000004 D _local_slave_size    libdsap        parse
  3715. +00000004 D _local_cache_size    libdsap        parse
  3716. +00000004 C _savefile            libdsap        parse
  3717. +00000004 D _ufn_notify          libdsap        ufn_parse
  3718. +00000004 D _ufn_flags           libdsap        ufn_parse
  3719. +00000004 D _ufnas               libdsap        ufn_parse
  3720. +00000004 D _ufn_abort           libdsap        ufn_parse
  3721. +00000004 D _ufn_bad_dsa         libdsap        ufn_parse
  3722. +00000004 D _ufn_partials        libdsap        ufn_parse
  3723. +00000004 C _at_OrgUnit          libdsap        ufn_parse
  3724. +00000004 C _at_Organisation     libdsap        ufn_parse
  3725. +00000004 C _at_Locality         libdsap        ufn_parse
  3726. +00000004 C _at_CountryName      libdsap        ufn_parse
  3727. +00000004 C _at_FriendlyCountryName libdsap        ufn_parse
  3728. +00000004 C _at_CommonName       libdsap        ufn_parse
  3729. +00000004 C _at_Surname          libdsap        ufn_parse
  3730. +00000004 C _at_Userid           libdsap        ufn_parse
  3731. +00000004 C _at_ObjectClass      libdsap        ufn_parse
  3732. +00000004 D _chase_flag          libdsap        cstrings
  3733. +00000004 D _result_sequence     libdsap        service
  3734. +00000004 D _current_sequence    libdsap        service
  3735. +00000004 D _top_sequence        libdsap        service
  3736. +00000004 C _copy_flag           libdsap        service
  3737. +00000004 D _dsap_security       libdsap        security
  3738. +00000004 C _turbo_index_types   libdsap        turbo_index
  3739. +00000004 C _turbo_index_num     libdsap        turbo_index
  3740. +00000004 C _subtree_index       libdsap        turbo_index
  3741. +00000004 C _sibling_index       libdsap        turbo_index
  3742. +00000004 C _optimized_only      libdsap        turbo_index
  3743. +00000004 C _at_certificate      libdsap        attribute
  3744. +00000004 C _at_p_password       libdsap        attribute
  3745. +00000004 C _at_password         libdsap        attribute
  3746. +00000004 C _at_acl              libdsap        attribute
  3747. +00000004 C _at_control          libdsap        attribute
  3748. +00000004 C _at_dsa_control      libdsap        attribute
  3749. +00000004 C _at_schema           libdsap        attribute
  3750. +00000004 C _at_applctx          libdsap        attribute
  3751. +00000004 C _at_edbinfo          libdsap        attribute
  3752. +00000004 C _at_masterdsa        libdsap        attribute
  3753. +00000004 C _at_slavedsa         libdsap        attribute
  3754. +00000004 C _at_relaydsa         libdsap        attribute
  3755. +00000004 C _at_dsaaddress       libdsap        attribute
  3756. +00000004 C _at_version          libdsap        attribute
  3757. +00000004 C _at_inherit          libdsap        attribute
  3758. +00000004 C _at_subord           libdsap        attribute
  3759. +00000004 C _at_xref             libdsap        attribute
  3760. +00000004 C _at_nssr             libdsap        attribute
  3761. +00000004 C _at_listen           libdsap        attribute
  3762. +00000004 C _at_searchacl        libdsap        attribute
  3763. +00000004 C _at_listacl          libdsap        attribute
  3764. +00000004 C _at_authpolicy       libdsap        attribute
  3765. +00000004 C _alias_oc            libdsap        attribute
  3766. +00000004 C _quipu_dsa_oid       libdsap        attribute
  3767. +00000004 C _extern_obj_oid      libdsap        attribute
  3768. +00000004 D _qos_indent          libdsap        qos
  3769. +00000004 C _as_sntx             libdsap        attr_sntx
  3770. +00000004 C _bl_tree_top         libdsap        photo_dec
  3771. +00000004 C _wt_tree_top         libdsap        photo_dec
  3772. +00000004 C _two_tree_top        libdsap        photo_dec
  3773. +00000004 C _position            libdsap        photo_dec
  3774. +00000004 C _bitmap              libdsap        photo_dec
  3775. +00000004 D _built               libdsap        photo_build
  3776. +00000004 C _PIC_LINESIZE        libdsap        photo_util
  3777. +00000004 C _STOP                libdsap        photo_util
  3778. +00000004 C _NUMLINES            libdsap        photo_util
  3779. +00000004 D _sacl_sntx           libdsap        searchacl
  3780. +00000004 D _lacl_sntx           libdsap        searchacl
  3781. +00000014 D _selector_rank       libdsap        searchacl
  3782. +00000004 C _authp_sntx          libdsap        authpolicy
  3783. +00000004 D _commonversion       libdsap        commonvrsn
  3784. +00000004 D _x500_da_pcdl        libdsap        dsapcontexts
  3785. +00000004 D _x500_ds_pcdl        libdsap        dsapcontexts
  3786. +00000004 D _quipu_ds_pcdl       libdsap        dsapcontexts
  3787. +00000004 D _internet_ds_pcdl    libdsap        dsapcontexts
  3788. +00000004 C _acse_pci            libdsap        dsapcontexts
  3789. +00000004 C _x500_da_as          libdsap        dsapcontexts
  3790. +00000004 C _x500_ds_as          libdsap        dsapcontexts
  3791. +00000004 C _quipu_ds_as         libdsap        dsapcontexts
  3792. +00000004 C _internet_ds_as      libdsap        dsapcontexts
  3793. +00000004 C _x500_da_ac          libdsap        dsapcontexts
  3794. +00000004 C _x500_ds_ac          libdsap        dsapcontexts
  3795. +00000004 C _quipu_ds_ac         libdsap        dsapcontexts
  3796. +00000004 C _internet_ds_ac      libdsap        dsapcontexts
  3797. +000000a4 C _x500_da_pcdl_s      libdsap        dsapcontexts
  3798. +000000a4 C _x500_ds_pcdl_s      libdsap        dsapcontexts
  3799. +000000a4 C _quipu_ds_pcdl_s     libdsap        dsapcontexts
  3800. +000000a4 C _internet_ds_pcdl_s  libdsap        dsapcontexts
  3801. +00000008 D _restart_fn          libdsap        dsapwait
  3802. +00000330 C _dsa_bound           libdsap        dapbind
  3803. +00000004 D _abort_vector        libdsap        plog
  3804. +00000004 D _netversion          libdsap        netvrsn
  3805. +00000030 D _fclass_pairs        libftam        ftamprovider
  3806. +00000050 D _funit_pairs         libftam        ftamprovider
  3807. +00000020 D _fattr_pairs         libftam        ftamprovider
  3808. +00000098 D _fname_pairs         libftam        ftamprovider
  3809. +00000030 D _fmode_pairs         libftam        ftamprovider
  3810. +00000048 D _frequested_pairs    libftam        ftamprovider
  3811. +00000060 D _fpermitted_pairs    libftam        ftamprovider
  3812. +00000020 D __ftam_log           libftam        ftamtrace
  3813. +00000004 D _ftam_log            libftam        ftamtrace
  3814. +00000028 D _fconctl_pairs       libftam        ftamconctl
  3815. +00000004 D __ZptrtabCONT        libftam        CONT_tables
  3816. +00000024 D __ZCONT_mod          libftam        CONT_tables
  3817. +00000058 D __ZptrtabFADU        libftam        FADU_tables
  3818. +00000024 D __ZFADU_mod          libftam        FADU_tables
  3819. +00000420 D __ZptrtabFTAM        libftam        FTAM_tables
  3820. +00000024 D __ZFTAM_mod          libftam        FTAM_tables
  3821. +00000004 D _ftamversion         libftam        ftamvrsn
  3822. diff -u --recursive --new-file isode-8.0/others/quipu/image/Makefile isode-8.0-linux/others/quipu/image/Makefile
  3823. --- isode-8.0/others/quipu/image/Makefile    Tue Jun 16 13:43:25 1992
  3824. +++ isode-8.0-linux/others/quipu/image/Makefile    Fri Aug 20 14:36:07 1993
  3825. @@ -70,7 +70,7 @@
  3826.  xface:        xface.o imagesbr.o \
  3827.              $(TOPDIR)libisode.a $(TOPDIR)libdsap.a
  3828.          $(LDCC) $(LDFLAGS) -o $@ xface.o imagesbr.o \
  3829. -            $(LIBDSAP) $(LIBISODE) $(LSOCKET) -lX11 $(LIBGDBM)
  3830. +            $(LIBDSAP) $(LIBISODE) $(LSOCKET) -L/usr/X386/lib -lX11 $(LIBGDBM)
  3831.  
  3832.  l-xface:;    $(LINT) $(LFLAGS) xface.c imagesbr.c $(LLIBS) \
  3833.              | grep -v "warning: possible pointer alignment problem"
  3834. @@ -95,7 +95,7 @@
  3835.  xwho:        xwho.o imagesbr.o \
  3836.              $(TOPDIR)libisode.a $(TOPDIR)libdsap.a
  3837.          $(LDCC) $(LDFLAGS) -o $@ xwho.o imagesbr.o \
  3838. -            $(LIBDSAP) $(LIBISODE) $(LSOCKET) -lX11 $(LIBGDBM)
  3839. +            $(LIBDSAP) $(LIBISODE) $(LSOCKET) -L/usr/X386/lib -lX11 $(LIBGDBM)
  3840.  
  3841.  l-xwho:;    $(LINT) $(LFLAGS) xwho.c imagesbr.c $(LLIBS) \
  3842.              | grep -v "warning: possible pointer alignment problem"
  3843. diff -u --recursive --new-file isode-8.0/others/quipu/photo/Makefile isode-8.0-linux/others/quipu/photo/Makefile
  3844. --- isode-8.0/others/quipu/photo/Makefile    Tue Jun 16 13:43:36 1992
  3845. +++ isode-8.0-linux/others/quipu/photo/Makefile    Fri Aug 20 14:04:10 1993
  3846. @@ -27,7 +27,7 @@
  3847.  
  3848.  # Select you display type(s)...
  3849.  # should really go in config/CONFIG.make
  3850. -DISPLAY = ttyphoto fax2ps
  3851. +DISPLAY = ttyphoto fax2ps Xphoto xfax hexphoto jpeg
  3852.  # DISPLAY = sunphoto Xphoto xfax ttyphoto hexphoto t4014 fax2ps jpeg
  3853.  
  3854.  # UNIX path for the xv binary
  3855. @@ -62,11 +62,11 @@
  3856.  
  3857.  Xphoto: $(TOPDIR)libdsap.a d_main.o winx.o
  3858.      $(LDCC) $(LDFLAGS) -o Xphoto \
  3859. -        d_main.o winx.o -lX11 $(LIBDSAP) $(LIBISODE) $(LSOCKET)
  3860. +        d_main.o winx.o -L/usr/X386/lib -lX11 $(LIBDSAP) $(LIBISODE) $(LSOCKET)
  3861.  
  3862.  xfax: $(TOPDIR)libdsap.a d_main.o faxx.o
  3863.      $(LDCC) $(LDFLAGS) -o xfax \
  3864. -        d_main.o faxx.o -lX11 $(LIBDSAP) $(LIBISODE) $(LSOCKET)
  3865. +        d_main.o faxx.o -L/usr/X386/lib -lX11 $(LIBDSAP) $(LIBISODE) $(LSOCKET)
  3866.  
  3867.  fax2ps: $(TOPDIR)libdsap.a d_main.o ps.o
  3868.      $(LDCC) $(LDFLAGS) -o fax2ps \
  3869. @@ -98,7 +98,8 @@
  3870.  PBMSRC  =    /usr/src/pbmplus/
  3871.  PBMDIR    =    $(PBMSRC)pbm/
  3872.  PBMINC    =    -I$(PBMSRC) -I$(PBMDIR)
  3873. -LIBPBM    =    $(PBMDIR)libpbm.a
  3874. +#LIBPBM    =    $(PBMDIR)libpbm.a
  3875. +LIBPBM    =    /usr/local/lib/libpbm.a
  3876.  
  3877.  pbm:        faxtopbm pbmtofax
  3878.  
  3879. @@ -107,14 +108,14 @@
  3880.              $(LIBDSAP) $(LIBPBM) $(LIBISODE) $(LSOCKET)
  3881.  
  3882.  faxtopbm.o:    faxtopbm.c
  3883. -        $(CC) $(CFLAGS) $(PBMINC) -c faxtopbm.c
  3884. +        $(CC) $(XFLAGS) $(CFLAGS) $(PBMINC) -c faxtopbm.c
  3885.  
  3886.  pbmtofax:    pbmtofax.o encode.o code_word.o $(TOPDIR)libdsap.a $(LIBPBM)
  3887.          $(LDCC) $(LDFLAGS) -o $@ pbmtofax.o encode.o code_word.o \
  3888.              $(LIBDSAP) $(LIBPBM) $(LIBISODE) $(LSOCKET)
  3889.  
  3890.  pbmtofax.o:    pbmtofax.c
  3891. -        $(CC) $(CFLAGS) $(PBMINC) -c pbmtofax.c
  3892. +        $(CC) $(XFLAGS) $(CFLAGS) $(PBMINC) -c pbmtofax.c
  3893.  
  3894.  
  3895.  #####################################################################
  3896. diff -u --recursive --new-file isode-8.0/others/quipu/photo/pbmtofax.c isode-8.0-linux/others/quipu/photo/pbmtofax.c
  3897. --- isode-8.0/others/quipu/photo/pbmtofax.c    Tue Jun 16 13:43:41 1992
  3898. +++ isode-8.0-linux/others/quipu/photo/pbmtofax.c    Wed Jan  5 11:15:53 1994
  3899. @@ -28,7 +28,7 @@
  3900.  #include <stdio.h>
  3901.  #include "quipu/photo.h"
  3902.  #include "pbm.h"
  3903. -#include "general.h"
  3904. +/*#include "general.h"*/
  3905.  
  3906.  /*     DATA */
  3907.  
  3908. diff -u --recursive --new-file isode-8.0/others/quipu/tools/dsaconfig/dsaconfig.c isode-8.0-linux/others/quipu/tools/dsaconfig/dsaconfig.c
  3909. --- isode-8.0/others/quipu/tools/dsaconfig/dsaconfig.c    Tue Jun 16 13:43:58 1992
  3910. +++ isode-8.0-linux/others/quipu/tools/dsaconfig/dsaconfig.c    Wed Jan  5 11:15:54 1994
  3911. @@ -1334,6 +1334,7 @@
  3912.  
  3913.  /*     MISCELLANY */
  3914.  
  3915. +#ifndef _POSIX_SOURCE
  3916.  #ifndef    lint
  3917.  static char *strdup (s)
  3918.  char   *s;
  3919. @@ -1347,4 +1348,5 @@
  3920.  
  3921.      return p;
  3922.  }
  3923. +#endif
  3924.  #endif
  3925. diff -u --recursive --new-file isode-8.0/others/quipu/tools/dsaconfig/usconfig.c isode-8.0-linux/others/quipu/tools/dsaconfig/usconfig.c
  3926. --- isode-8.0/others/quipu/tools/dsaconfig/usconfig.c    Tue Jun 16 13:44:00 1992
  3927. +++ isode-8.0-linux/others/quipu/tools/dsaconfig/usconfig.c    Wed Jan  5 11:15:54 1994
  3928. @@ -32,6 +32,9 @@
  3929.  #include <sys/file.h>
  3930.  #include <pwd.h>
  3931.  #include <grp.h>
  3932. +#ifdef _POSIX_SOURCE
  3933. +#include <unistd.h>
  3934. +#endif
  3935.  
  3936.  #include "general.h"
  3937.  #include "manifest.h"
  3938. diff -u --recursive --new-file isode-8.0/others/quipu/uips/de/config.h isode-8.0-linux/others/quipu/uips/de/config.h
  3939. --- isode-8.0/others/quipu/uips/de/config.h    Tue Jun 16 13:46:07 1992
  3940. +++ isode-8.0-linux/others/quipu/uips/de/config.h    Tue Aug 31 15:14:25 1993
  3941. @@ -24,6 +24,6 @@
  3942.  #ifndef _deconfig_h
  3943.  #define _deconfig_h
  3944.  
  3945. -#define PAGER "/usr/5bin/pg -e -n -p \"RETURN for next screen; q to quit\""
  3946. +#define PAGER "/usr/bin/less"
  3947.  
  3948.  #endif _deconfig_h
  3949. diff -u --recursive --new-file isode-8.0/others/quipu/uips/de/rawinput.c isode-8.0-linux/others/quipu/uips/de/rawinput.c
  3950. --- isode-8.0/others/quipu/uips/de/rawinput.c    Tue Jun 16 13:46:33 1992
  3951. +++ isode-8.0-linux/others/quipu/uips/de/rawinput.c    Wed Jan  5 11:15:57 1994
  3952. @@ -26,7 +26,11 @@
  3953.  
  3954.  
  3955.  #include <stdio.h>
  3956. +#ifdef __linux__
  3957. +#include <termios.h>
  3958. +#else
  3959.  #include <sys/termio.h>
  3960. +#endif
  3961.  
  3962.  static short savemode;
  3963.  static unsigned char savemin;
  3964. diff -u --recursive --new-file isode-8.0/others/quipu/uips/dish/socket.c isode-8.0-linux/others/quipu/uips/dish/socket.c
  3965. --- isode-8.0/others/quipu/uips/dish/socket.c    Tue Jun 16 13:44:26 1992
  3966. +++ isode-8.0-linux/others/quipu/uips/dish/socket.c    Wed Jan  5 11:15:54 1994
  3967. @@ -69,12 +69,20 @@
  3968.          else
  3969.              (void) sprintf (buffer, "127.0.0.1 %d", portno);
  3970.  
  3971. +#ifdef _POSIX_SOURCE
  3972. +        (void) setenv ("DISHPROC", ptr = buffer, 1);
  3973. +#else
  3974.          (void) setenv ("DISHPROC", ptr = buffer);
  3975. +#endif
  3976.          }
  3977.  
  3978.          if (pid !=0 || (prnt = getenv ("DISHPARENT")) == NULLCP) {
  3979.          (void) sprintf (parent, "%d", myppid);
  3980. +#ifdef _POSIX_SOURCE
  3981. +        (void) setenv ("DISHPARENT", prnt = parent, 1);
  3982. +#else
  3983.          (void) setenv ("DISHPARENT", prnt = parent);
  3984. +#endif
  3985.      }
  3986.  
  3987.  
  3988. diff -u --recursive --new-file isode-8.0/others/quipu/uips/fred/Makefile isode-8.0-linux/others/quipu/uips/fred/Makefile
  3989. --- isode-8.0/others/quipu/uips/fred/Makefile    Tue Jun 16 13:44:31 1992
  3990. +++ isode-8.0-linux/others/quipu/uips/fred/Makefile    Wed Sep  1 10:26:42 1993
  3991. @@ -82,6 +82,7 @@
  3992.          -@echo ""
  3993.  
  3994.  fred:        xfred
  3995. +        :
  3996.  
  3997.  xfred:        fred.o dispatch.o miscellany.o pipe.o socket.o whois.o
  3998.          $(LDCC) $(LDFLAGS) -o $@ fred.o dispatch.o miscellany.o \
  3999. @@ -156,6 +157,7 @@
  4000.          -@echo ""
  4001.  
  4002.  fredsh:        xfredsh
  4003. +        :
  4004.  
  4005.  xfredsh:    fredsh.sh
  4006.          cp fredsh.sh $@
  4007. @@ -193,6 +195,7 @@
  4008.          -@echo ""
  4009.  
  4010.  dad:        xdad
  4011. +        :
  4012.  
  4013.  xdad:        dad.o socket.o
  4014.          $(LDCC) $(LDFLAGS) -o $@ dad.o socket.o $(LIBES) $(LSOCKET)
  4015. @@ -215,6 +218,7 @@
  4016.          -@echo ""
  4017.  
  4018.  whitepages:    xwhitepages
  4019. +        :
  4020.  
  4021.  xwhitepages:    whitepages.sh
  4022.          cp whitepages.sh $@
  4023. diff -u --recursive --new-file isode-8.0/others/quipu/uips/manage/Makefile isode-8.0-linux/others/quipu/uips/manage/Makefile
  4024. --- isode-8.0/others/quipu/uips/manage/Makefile    Tue Jun 16 13:44:45 1992
  4025. +++ isode-8.0-linux/others/quipu/uips/manage/Makefile    Tue Aug 31 17:08:55 1993
  4026. @@ -64,6 +64,7 @@
  4027.          -@echo ""
  4028.  
  4029.  dish:        xdish
  4030. +        :
  4031.  
  4032.  xdish:        dish.o libmanage.a
  4033.          $(LDCC) $(LDFLAGS) -o $@ dish.o $(LIBES) 
  4034. diff -u --recursive --new-file isode-8.0/others/quipu/uips/pod/Makefile isode-8.0-linux/others/quipu/uips/pod/Makefile
  4035. --- isode-8.0/others/quipu/uips/pod/Makefile    Tue Jun 16 13:44:54 1992
  4036. +++ isode-8.0-linux/others/quipu/uips/pod/Makefile    Fri Aug 27 16:38:28 1993
  4037. @@ -10,7 +10,7 @@
  4038.  ###############################################################################
  4039.  
  4040.  #X app-defaults directory.
  4041. -APPDEFDIR =    /usr/lib/X11/app-defaults
  4042. +APPDEFDIR =    /usr/X386/lib/X11/app-defaults
  4043.  
  4044.  #yacc flags
  4045.  YFLAGS  =    -d
  4046. @@ -24,7 +24,7 @@
  4047.  
  4048.  ISOLIBS =    $(TOPDIR)libdsap.a $(TOPDIR)libisode.a 
  4049.  
  4050. -XLIBS   =    -lXaw -lXmu -lXt -lX11 -lXext
  4051. +XLIBS   =    -L/usr/X386/lib -lXaw -lXmu -lXt -lX11 -lXext
  4052.  
  4053.  LIBES   =       $(ISOLIBS) $(XLIBS)
  4054.  LLIBS   =       $(TOPDIR)llib-ldsap $(TOPDIR)llib-lisode
  4055. diff -u --recursive --new-file isode-8.0/others/quipu/uips/pod/Pod.ad isode-8.0-linux/others/quipu/uips/pod/Pod.ad
  4056. --- isode-8.0/others/quipu/uips/pod/Pod.ad    Tue Jun 16 13:44:55 1992
  4057. +++ isode-8.0-linux/others/quipu/uips/pod/Pod.ad    Wed Sep  1 11:54:46 1993
  4058. @@ -1,19 +1,19 @@
  4059.  /* $Header: /xtel/isode/isode/others/quipu/uips/pod/RCS/Pod.ad,v 9.0 1992/06/16 12:44:54 isode Rel $ */
  4060.  
  4061. -Pod*PosTitle.font:        -*-helvetica-*-*-*-*-11-*
  4062. -Pod*readTitle.font:        -*-helvetica-*-*-*-*-11-*
  4063. -Pod*listTitle.font:        -*-helvetica-*-*-*-*-11-*
  4064. -Pod*HistoryTitle.font:        -*-helvetica-*-*-*-*-11-*
  4065. -Pod*MenuButton*font:        -*-helvetica-*-r-*-*-11-*
  4066. +Pod*PosTitle.font:        -*-helvetica-*-*-*-*-10-*
  4067. +Pod*readTitle.font:        -*-helvetica-*-*-*-*-10-*
  4068. +Pod*listTitle.font:        -*-helvetica-*-*-*-*-10-*
  4069. +Pod*HistoryTitle.font:        -*-helvetica-*-*-*-*-10-*
  4070. +Pod*MenuButton*font:        -*-helvetica-*-r-*-*-10-*
  4071.  Pod*standby*font:        -*-helvetica-bold-r-*-*-14-*
  4072.  Pod*error_popup*font:        -*-helvetica-bold-r-*-*-14-*
  4073. -Pod*popup_help_form*font:    -*-helvetica-medium-r-*-*-11-*
  4074. +Pod*popup_help_form*font:    -*-helvetica-medium-r-*-*-10-*
  4075.  Pod*About Pod*font:        -*-helvetica-bold-r-*-*-14-*
  4076.  Pod*SearchVal*font:        -adobe-helvetica-medium-r-*-*-12-*
  4077.  Pod*SearchValLabel.font:    -adobe-helvetica-medium-r-*-*-12-*
  4078.  Pod*TypeButton.font:        -adobe-helvetica-bold-r-*-*-12-*
  4079.  Pod*menu*font:            -adobe-helvetica-bold-r-*-*-12-*
  4080. -Pod*font:            -*-helvetica-medium-r-*-*-11-*
  4081. +Pod*font:            -*-helvetica-medium-r-*-*-10-*
  4082.  
  4083.  #ifdef COLOR
  4084.  
  4085. diff -u --recursive --new-file isode-8.0/pepsy/Makefile isode-8.0-linux/pepsy/Makefile
  4086. --- isode-8.0/pepsy/Makefile    Tue Jun 16 13:24:04 1992
  4087. +++ isode-8.0-linux/pepsy/Makefile    Wed Aug 25 14:28:32 1993
  4088. @@ -81,6 +81,7 @@
  4089.          -@echo ""
  4090.  
  4091.  pepsy:        xpepsy
  4092. +        :
  4093.  
  4094.  xpepsy:        pepsyvrsn.o $(PEPSYLIBES)
  4095.          $(LDCC) $(LDFLAGS) -o $@ $(PEPSY-O) \
  4096. @@ -142,6 +143,18 @@
  4097.  ################################################################
  4098.  
  4099.  inst-libpepsy:    $(LIBDIR)libpepsy.a inst-headers
  4100. +
  4101. +zap-pepsy:
  4102. +        -rm -f $(LIBFILES) libpepsy.a
  4103. +
  4104. +linux-lib:    zap-pepsy ../jump/libpepsy.a
  4105. +
  4106. +../jump/libpepsy.a:    libpepsy
  4107. +        -rm -f $@
  4108. +        cp libpepsy.a $@
  4109. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4110. +        -@ls -gls $@
  4111. +        -@echo ""
  4112.  
  4113.  libpepsy:    libpepsy.a true
  4114.          -@rm -f $(TOPDIR)h/UNIV*.h
  4115. diff -u --recursive --new-file isode-8.0/pepy/Makefile isode-8.0-linux/pepy/Makefile
  4116. --- isode-8.0/pepy/Makefile    Tue Jun 16 13:25:02 1992
  4117. +++ isode-8.0-linux/pepy/Makefile    Tue Aug 24 11:52:30 1993
  4118. @@ -81,6 +81,7 @@
  4119.          -@echo ""
  4120.  
  4121.  pepy:        xpepy
  4122. +        :
  4123.  
  4124.  xpepy:        pepyvrsn.o $(PEPYLIBES)
  4125.          $(LDCC) $(LDFLAGS) -o $@ pepy.o pepy_do.o pepy_undo.o \
  4126. @@ -142,6 +143,7 @@
  4127.          -@echo ""
  4128.  
  4129.  posy:        xposy
  4130. +        :
  4131.  
  4132.  xposy:        posy.o pepy_misc.o yacc.o pepyvrsn.o $(PEPYLIBES)
  4133.          $(LDCC) $(LDFLAGS) -o $@ posy.o pepy_misc.o yacc.o \
  4134. @@ -165,6 +167,18 @@
  4135.  HEADERS    =    UNIV.ph UNIV-types.h
  4136.  
  4137.  inst-libpepy:    $(LIBDIR)libpepy.a inst-headers
  4138. +
  4139. +zap-pepy:
  4140. +        -rm -f $(OFILES) libpepy.a UPEPY-[0-9]*.o VPEPY-[0-9]*.o
  4141. +
  4142. +linux-lib:    zap-pepy ../jump/libpepy.a
  4143. +
  4144. +../jump/libpepy.a:    libpepy.a
  4145. +        -rm -f $@
  4146. +        cp libpepy.a $@
  4147. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4148. +        -@ls -gls $@
  4149. +        -@echo ""
  4150.  
  4151.  $(LIBDIR)libpepy.a:    libpepy.a
  4152.          -rm -f $@
  4153. diff -u --recursive --new-file isode-8.0/psap/Makefile isode-8.0-linux/psap/Makefile
  4154. --- isode-8.0/psap/Makefile    Tue Jun 16 13:25:44 1992
  4155. +++ isode-8.0-linux/psap/Makefile    Tue Aug 24 11:53:07 1993
  4156. @@ -85,6 +85,18 @@
  4157.  
  4158.  inst-libpsap:    $(LIBDIR)libpsap.a $(LINTDIR)llib-lpsap
  4159.  
  4160. +zap-psap:
  4161. +        -rm -f $(OFILES) libpsap.a psapvrsn.o
  4162. +
  4163. +linux-lib:    zap-psap ../jump/libpsap.a
  4164. +
  4165. +../jump/libpsap.a:    libpsap.a
  4166. +        -rm -f $@
  4167. +        cp libpsap.a $@
  4168. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4169. +        -@ls -gls $@
  4170. +        -@echo ""
  4171. +
  4172.  $(LIBDIR)libpsap.a:    libpsap.a
  4173.          -rm -f $@
  4174.          cp libpsap.a $@
  4175. diff -u --recursive --new-file isode-8.0/psap2/Makefile isode-8.0-linux/psap2/Makefile
  4176. --- isode-8.0/psap2/Makefile    Tue Jun 16 13:29:43 1992
  4177. +++ isode-8.0-linux/psap2/Makefile    Tue Aug 24 11:52:20 1993
  4178. @@ -68,6 +68,18 @@
  4179.  
  4180.  inst-libpsap2:    $(LIBDIR)libpsap2.a $(LINTDIR)llib-lpsap2
  4181.  
  4182. +zap-psap2:
  4183. +        -rm -f $(OFILES) libpsap2.a PS_tables.o psap2vrsn.o
  4184. +
  4185. +linux-lib:    zap-psap2 ../jump/libpsap2.a
  4186. +
  4187. +../jump/libpsap2.a:    libpsap2.a
  4188. +        -rm -f $@
  4189. +        cp libpsap2.a $@
  4190. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4191. +        -@ls -gls $@
  4192. +        -@echo ""
  4193. +
  4194.  $(LIBDIR)libpsap2.a:    libpsap2.a
  4195.          -rm -f $@
  4196.          cp libpsap2.a $@
  4197. diff -u --recursive --new-file isode-8.0/psap2-lpp/Makefile isode-8.0-linux/psap2-lpp/Makefile
  4198. --- isode-8.0/psap2-lpp/Makefile    Tue Jun 16 13:31:58 1992
  4199. +++ isode-8.0-linux/psap2-lpp/Makefile    Fri Aug 27 11:04:05 1993
  4200. @@ -66,6 +66,18 @@
  4201.  
  4202.  inst-libpsap2:    $(LIBDIR)libpsap2-lpp.a $(LINTDIR)llib-lpsap2-lpp
  4203.  
  4204. +zap-psap2-lpp:
  4205. +        -rm -f $(OFILES) libpsap2.a PS_tables.o psap2vrsn.o
  4206. +
  4207. +linux-lib:    zap-psap2-lpp ../jump/libpsap2-lpp.a
  4208. +
  4209. +../jump/libpsap2-lpp.a:    libpsap2-lpp.a
  4210. +        -rm -f $@
  4211. +        cp libpsap2-lpp.a $@
  4212. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4213. +        -@ls -gls $@
  4214. +        -@echo ""
  4215. +
  4216.  $(LIBDIR)libpsap2-lpp.a:    libpsap2-lpp.a
  4217.          -rm -f $@
  4218.          cp libpsap2-lpp.a $@
  4219. diff -u --recursive --new-file isode-8.0/quipu/Makefile isode-8.0-linux/quipu/Makefile
  4220. --- isode-8.0/quipu/Makefile    Tue Jun 16 13:34:01 1992
  4221. +++ isode-8.0-linux/quipu/Makefile    Mon Aug 23 11:24:13 1993
  4222. @@ -37,8 +37,8 @@
  4223.  
  4224.  # Remove these two definitions if you do not want the QUIPU optimised malloc.
  4225.  # Performace may suffer if you do!
  4226. -MALLOC_C =    malloc.c
  4227. -MALLOC_O =    malloc.o
  4228. +#MALLOC_C =    malloc.c
  4229. +#MALLOC_O =    malloc.o
  4230.  #DEBUGLIB  =    /xtel/user/cjr/src/mprof/libc_mp.a
  4231.  
  4232.  ##############################################################
  4233. @@ -133,7 +133,7 @@
  4234.          $(LDCC) $(LDFLAGS) -o $@ malloc_test.o qmalloc.o
  4235.  
  4236.  qmalloc.o:    malloc.c
  4237. -        $(CC) $(CFLAGS) -DMALLOC_TEST -o $@ -c malloc.c 
  4238. +        $(CC) $(CFLAGS) -o $@ -c malloc.c 
  4239.  
  4240.  quipuvrsn.c:    $(OFILES)
  4241.          @$(UTILDIR)version.sh quipu > $@
  4242. diff -u --recursive --new-file isode-8.0/quipu/dish/Makefile isode-8.0-linux/quipu/dish/Makefile
  4243. --- isode-8.0/quipu/dish/Makefile    Tue Jun 16 13:35:40 1992
  4244. +++ isode-8.0-linux/quipu/dish/Makefile    Mon Aug 23 15:52:33 1993
  4245. @@ -78,6 +78,7 @@
  4246.          -@echo ""
  4247.  
  4248.  dish:        xdish
  4249. +        :
  4250.  
  4251.  xdish:        libdish.a dish.o $(LIBES)
  4252.          $(LDCC) $(LDFLAGS) -o $@ dish.o $(LIBDISH) \
  4253. diff -u --recursive --new-file isode-8.0/quipu/dish/dishlib.c isode-8.0-linux/quipu/dish/dishlib.c
  4254. --- isode-8.0/quipu/dish/dishlib.c    Tue Jun 16 13:35:46 1992
  4255. +++ isode-8.0-linux/quipu/dish/dishlib.c    Wed Jan  5 11:16:10 1994
  4256. @@ -160,9 +160,13 @@
  4257.      (void) signal (SIGHUP,    dish_quit);
  4258.      (void) signal (SIGQUIT,    dish_quit);
  4259.      (void) signal (SIGILL,     dish_quit);
  4260. +#ifdef SIGBUS
  4261.      (void) signal (SIGBUS,    dish_quit);
  4262. +#endif
  4263.      (void) signal (SIGSEGV,    dish_quit);
  4264. +#ifdef SIGSYS
  4265.      (void) signal (SIGSYS,    dish_quit);
  4266. +#endif
  4267.      (void) signal (SIGTERM,    dish_quit);
  4268.  
  4269.  #ifdef TURBO_DISK
  4270. diff -u --recursive --new-file isode-8.0/quipu/dish/fred.c isode-8.0-linux/quipu/dish/fred.c
  4271. --- isode-8.0/quipu/dish/fred.c    Tue Jun 16 13:35:49 1992
  4272. +++ isode-8.0-linux/quipu/dish/fred.c    Wed Jan  5 11:16:10 1994
  4273. @@ -137,7 +137,11 @@
  4274.      if (argc != 3)
  4275.          goto usage;
  4276.  
  4277. +#ifdef _POSIX_SOURCE
  4278. +    (void) setenv ("DISPLAY", argv[2], 1);
  4279. +#else
  4280.      (void) setenv ("DISPLAY", argv[2]);
  4281. +#endif
  4282.      if (s_photo)
  4283.          set_av_pe_print (s_photo,
  4284.                   strdup (isodefile ("g3fax/Xphoto", 1)));
  4285. @@ -1599,10 +1603,18 @@
  4286.              }
  4287.              ps_print (ps, " ");
  4288.              *--ps -> ps_ptr = NULL, ps -> ps_cnt++;
  4289. +#ifdef _POSIX_SOURCE
  4290. +            (void) setenv ("RDN", ps -> ps_base, 1);
  4291. +#else
  4292.              (void) setenv ("RDN", ps -> ps_base);
  4293. +#endif
  4294.              }
  4295.              else
  4296. +#ifdef _POSIX_SOURCE
  4297. +            (void) setenv ("RDN", "Photo", 1);
  4298. +#else
  4299.              (void) setenv ("RDN", "Photo");
  4300. +#endif
  4301.          }
  4302.          break;
  4303.          }
  4304. diff -u --recursive --new-file isode-8.0/quipu/dish/modify.c isode-8.0-linux/quipu/dish/modify.c
  4305. --- isode-8.0/quipu/dish/modify.c    Tue Jun 16 13:35:52 1992
  4306. +++ isode-8.0-linux/quipu/dish/modify.c    Wed Jan  5 11:16:10 1994
  4307. @@ -81,6 +81,7 @@
  4308.      DN        moddn;
  4309.      char           *home;
  4310.      RDN        new_rdn;
  4311. +    char        force_del_draft = FALSE;
  4312.  
  4313.  struct  list_element   *start = 0 ;
  4314.  struct  list_element   *last ;
  4315. @@ -247,6 +248,16 @@
  4316.      entry_ptr->e_attributes = get_attributes (fd);
  4317.  #endif
  4318.  
  4319. +    /* Fix ref count of all file attrs */
  4320. +    for (as = entry_ptr->e_attributes;as != NULLATTR; as = as->attr_link) {
  4321. +       AV_Sequence avs;
  4322. +           for (avs = as->attr_value; avs != NULLAV; avs=avs->avseq_next)
  4323. +           if (avs->avseq_av.av_syntax == AV_FILE) {
  4324. +         ((struct file_syntax *)(avs->avseq_av.av_struct)) -> fs_ref++;
  4325. +         force_del_draft = TRUE;
  4326. +           }
  4327. +        }
  4328. +        
  4329.      (void) fclose (fd);
  4330.      if (parse_status != 0)
  4331.          return;
  4332. @@ -354,6 +365,8 @@
  4333.      while (ds_modifyentry (&mod_arg, &error) != DS_OK) {
  4334.          if (dish_error (OPT, &error) == 0) {
  4335.              entry_free (entry_ptr);
  4336. +            if (force_del_draft)
  4337. +                make_old (fname,draft_flag);
  4338.              return;
  4339.          }
  4340.          mod_arg.mea_object = error.ERR_REFERRAL.DSE_ref_candidates->cr_name;
  4341. diff -u --recursive --new-file isode-8.0/quipu/dish/pipe.c isode-8.0-linux/quipu/dish/pipe.c
  4342. --- isode-8.0/quipu/dish/pipe.c    Tue Jun 16 13:35:55 1992
  4343. +++ isode-8.0-linux/quipu/dish/pipe.c    Wed Jan  5 11:16:09 1994
  4344. @@ -64,7 +64,11 @@
  4345.  
  4346.      if ((cp = getenv ("DISHPARENT")) == NULLCP) {
  4347.          (void) sprintf (parent, "%d", getppid ());
  4348. +#ifdef _POSIX_SOURCE
  4349. +        (void) setenv ("DISHPARENT", cp = parent, 1);
  4350. +#else
  4351.          (void) setenv ("DISHPARENT", cp = parent);
  4352. +#endif
  4353.      }
  4354.  
  4355.  
  4356. @@ -360,7 +364,11 @@
  4357.  #else
  4358.          (void) sprintf (buffer, "127.0.0.1 %d", portno);
  4359.  #endif
  4360. +#ifdef _POSIX_SOURCE
  4361. +        (void) setenv ("DISHPROC", ptr = buffer, 1);
  4362. +#else
  4363.          (void) setenv ("DISHPROC", ptr = buffer);
  4364. +#endif
  4365.      }
  4366.  
  4367.      if ((dp = index (ptr, ' ')) == NULLCP || sscanf (dp + 1, "%d", &portno) != 1) {
  4368. diff -u --recursive --new-file isode-8.0/quipu/ds_add.c isode-8.0-linux/quipu/ds_add.c
  4369. --- isode-8.0/quipu/ds_add.c    Tue Jun 16 13:34:08 1992
  4370. +++ isode-8.0-linux/quipu/ds_add.c    Wed Jan  5 11:16:11 1994
  4371. @@ -67,6 +67,9 @@
  4372.  int authp;
  4373.  extern int read_only;
  4374.  extern int    entry_cmp();
  4375. +char add_edbinfo = FALSE;
  4376. +Attr_Sequence newas;
  4377. +        
  4378.  
  4379.      DLOG (log_dsap,LLOG_TRACE,("ds_add"));
  4380.  
  4381. @@ -204,6 +207,11 @@
  4382.      ptr->e_name = rdn_cpy (dn->dn_rdn);
  4383.      ptr->e_attributes = as_cpy (arg->ada_entry);
  4384.   
  4385. +    /* Add QUIPU object to object class -> may not be a QUIPU DUA ! */
  4386. +    newas = as_comp_new (AttrT_cpy(at_objectclass),
  4387. +         str2avs(QUIPUOBJECT,at_objectclass),NULLACL_INFO);
  4388. +    ptr->e_attributes = as_merge (ptr->e_attributes,newas);
  4389. +
  4390.      modify_attr (ptr,binddn);
  4391.  
  4392.      DLOG (log_dsap,LLOG_TRACE,("add - unravel"));
  4393. @@ -260,8 +268,6 @@
  4394.          /* Turn leaf into non leaf, and add child */
  4395.          /* Temporary until managemnet tools do it */
  4396.  
  4397. -        Attr_Sequence newas;
  4398. -        
  4399.          if (entryptr->e_data != E_DATA_MASTER) {
  4400.              DN dn_found;
  4401.              struct dn_seq    * dn_stack = NULLDNSEQ;
  4402. diff -u --recursive --new-file isode-8.0/quipu/ds_modify.c isode-8.0-linux/quipu/ds_modify.c
  4403. --- isode-8.0/quipu/ds_modify.c    Tue Jun 16 13:34:12 1992
  4404. +++ isode-8.0-linux/quipu/ds_modify.c    Wed Jan  5 11:16:11 1994
  4405. @@ -268,23 +268,6 @@
  4406.          }
  4407.      }
  4408.  
  4409. -    /* check the last value of an attribute has not been removed */
  4410. -    for (as = entryptr->e_attributes; as!=NULLATTR; as=as->attr_link)
  4411. -        if (as->attr_value == NULLAV) {
  4412. -            error->dse_type = DSE_ATTRIBUTEERROR;
  4413. -            error->ERR_ATTRIBUTE.DSE_at_name = 
  4414. -                get_copy_dn (entryptr);
  4415. -            error->ERR_ATTRIBUTE.DSE_at_plist.DSE_at_what =
  4416. -                DSE_AT_CONSTRAINTVIOLATION;
  4417. -            error->ERR_ATTRIBUTE.DSE_at_plist.DSE_at_type = 
  4418. -                AttrT_cpy (as->attr_type);
  4419. -            error->ERR_ATTRIBUTE.DSE_at_plist.DSE_at_value = 
  4420. -                NULLAttrV;
  4421. -            error->ERR_ATTRIBUTE.DSE_at_plist.dse_at_next = 
  4422. -                DSE_AT_NOPROBLEM;
  4423. -            entry_free (entryptr);
  4424. -            return (DS_ERROR_REMOTE);
  4425. -        }
  4426.      
  4427.      DATABASE_HEAP;
  4428.      modify_attr (entryptr,binddn);
  4429. diff -u --recursive --new-file isode-8.0/quipu/ds_read.c isode-8.0-linux/quipu/ds_read.c
  4430. --- isode-8.0/quipu/ds_read.c    Tue Jun 16 13:34:14 1992
  4431. +++ isode-8.0-linux/quipu/ds_read.c    Wed Jan  5 11:16:11 1994
  4432. @@ -39,7 +39,7 @@
  4433.  Attr_Sequence dsa_eis_select ();
  4434.  extern Attr_Sequence entry_find_type();
  4435.  static cant_use_cache();
  4436. -static attribute_not_cached ();
  4437. +static attribute_not_cache ();
  4438.  extern AttributeType at_control;
  4439.  extern unsigned bind_policy;
  4440.  extern unsigned strong_policy;
  4441. @@ -254,7 +254,8 @@
  4442.      if (dn == NULLDN) 
  4443.          return FALSE;
  4444.  
  4445. -    if ((ptr->e_data == E_DATA_MASTER) || (ptr->e_data == E_TYPE_SLAVE))
  4446. +    if ((ptr->e_data == E_DATA_MASTER) || (ptr->e_data == E_TYPE_SLAVE) ||
  4447. +        (ptr->e_complete == FALSE))
  4448.          return FALSE;
  4449.  
  4450.      /* see if more than cached data is required */    
  4451. diff -u --recursive --new-file isode-8.0/quipu/dsa.c isode-8.0-linux/quipu/dsa.c
  4452. --- isode-8.0/quipu/dsa.c    Tue Jun 16 13:34:19 1992
  4453. +++ isode-8.0-linux/quipu/dsa.c    Wed Jan  5 11:16:10 1994
  4454. @@ -281,9 +281,13 @@
  4455.      /* now started don't stop on core dumps !!! */
  4456.      (void) signal (SIGQUIT, attempt_restart);
  4457.      (void) signal (SIGILL,  attempt_restart);
  4458. +#ifdef SIGBUS
  4459.      (void) signal (SIGBUS,  attempt_restart);
  4460. +#endif
  4461.      (void) signal (SIGSEGV, attempt_restart);
  4462. +#ifdef SIGSYS
  4463.      (void) signal (SIGSYS,  attempt_restart);
  4464. +#endif
  4465.      (void) signal (SIGPIPE,  attempt_restart);
  4466.  #ifdef    SIGUSR1
  4467.      (void) signal (SIGUSR1, list_status);
  4468. @@ -743,9 +747,13 @@
  4469.  
  4470.      (void) signal (SIGQUIT, attempt_restart);
  4471.      (void) signal (SIGILL,  attempt_restart);
  4472. +#ifdef SIGBUS
  4473.      (void) signal (SIGBUS,  attempt_restart);
  4474. +#endif
  4475.      (void) signal (SIGSEGV, attempt_restart);
  4476. +#ifdef SIGSYS
  4477.      (void) signal (SIGSYS,  attempt_restart);
  4478. +#endif
  4479.  
  4480.      if (sig >= 0 && debug)
  4481.          (void) fprintf (stderr,"DSA %s has a problem\n",mydsaname);
  4482. diff -u --recursive --new-file isode-8.0/quipu/dsp_cache.c isode-8.0-linux/quipu/dsp_cache.c
  4483. --- isode-8.0/quipu/dsp_cache.c    Wed Jun 17 08:23:55 1992
  4484. +++ isode-8.0-linux/quipu/dsp_cache.c    Wed Jul 13 17:10:23 1994
  4485. @@ -43,8 +43,9 @@
  4486.  extern AttributeType at_acl;
  4487.  extern AttributeType at_objectclass;
  4488.  
  4489. -Entry cache_dsp_entry (ptr)
  4490. +Entry cache_dsp_entry (ptr,complete)
  4491.  EntryInfo      *ptr;
  4492. +char complete;
  4493.  {
  4494.      /* assumes entry passed is complete */
  4495.  
  4496. @@ -89,7 +90,7 @@
  4497.              as_free (eptr->e_attributes);
  4498.              as_write_files(ptr->ent_attr,edbtmp_path);
  4499.              eptr->e_attributes = as_cpy(ptr->ent_attr);
  4500. -            eptr->e_complete = TRUE;
  4501. +            eptr->e_complete = complete;
  4502.              eptr->e_data = E_TYPE_CACHE_FROM_MASTER;
  4503.              eptr->e_age = timenow;
  4504.              if (eptr->e_inherit)
  4505. @@ -103,7 +104,7 @@
  4506.              return NULLENTRY;
  4507.          local_cache_size++;
  4508.          eptr->e_name = rdn_cpy (dnptr->dn_rdn);
  4509. -        eptr->e_complete = TRUE;
  4510. +        eptr->e_complete = complete;
  4511.          eptr->e_data = E_TYPE_CACHE_FROM_MASTER;
  4512.          as_write_files(ptr->ent_attr,edbtmp_path);
  4513.          eptr->e_attributes = as_cpy(ptr->ent_attr);
  4514. @@ -153,10 +154,11 @@
  4515.  EntryInfo *ptr;
  4516.  Entry entryptr;
  4517.  Attr_Sequence as, eis_select (), attr_eis_select ();
  4518. +char cache_search = FALSE;
  4519.  
  4520.      switch(arg->arg_type) {    
  4521.      case OP_READ:
  4522. -    entryptr = cache_dsp_entry (&res->res_rd.rdr_entry);
  4523. +    entryptr = cache_dsp_entry (&res->res_rd.rdr_entry,TRUE);
  4524.      if (ctx == DS_CTX_X500_DAP)
  4525.         if (entryptr != NULLENTRY) {
  4526.          
  4527. @@ -182,8 +184,12 @@
  4528.         }
  4529.      break;
  4530.      case OP_SEARCH:
  4531. +        if ((arg->arg_sr.sra_eis.eis_allattributes == TRUE) &&
  4532. +            (arg->arg_sr.sra_eis.eis_infotypes == EIS_ATTRIBUTESANDVALUES)) 
  4533. +        cache_search = TRUE;
  4534. +
  4535.      for (ptr = res->res_sr.CSR_entries; ptr != NULLENTRYINFO; ptr = ptr->ent_next) 
  4536. -             (void) cache_dsp_entry (ptr);
  4537. +             (void) cache_dsp_entry (ptr,cache_search);
  4538.           break;
  4539.      case OP_LIST:
  4540.      if (ctx == DS_CTX_QUIPU_DSP)
  4541. diff -u --recursive --new-file isode-8.0/quipu/entry_load.c isode-8.0-linux/quipu/entry_load.c
  4542. --- isode-8.0/quipu/entry_load.c    Tue Jun 16 13:34:27 1992
  4543. +++ isode-8.0-linux/quipu/entry_load.c    Wed Jan  5 11:16:11 1994
  4544. @@ -198,8 +198,9 @@
  4545.          free (cp);
  4546.  
  4547.          nptr = (aps->ps_base + strlen (mapdir));
  4548. -        aps->ps_ptr = nptr;
  4549.  #endif /* TEMPNAM */
  4550. +
  4551. +    aps->ps_ptr = aps->ps_base + strlen(aps->ps_base);
  4552.  
  4553.      DLOG(log_dsap,LLOG_DEBUG,("mapped name %s",aps->ps_base));
  4554.  
  4555. diff -u --recursive --new-file isode-8.0/quipu/get_dsa_info.c isode-8.0-linux/quipu/get_dsa_info.c
  4556. --- isode-8.0/quipu/get_dsa_info.c    Tue Jun 16 13:34:30 1992
  4557. +++ isode-8.0-linux/quipu/get_dsa_info.c    Wed Jan  5 11:16:11 1994
  4558. @@ -235,7 +235,7 @@
  4559.      */
  4560.  
  4561.      ent_res = &(on->on_resp.di_result.dr_res.dcr_dsres.res_rd.rdr_entry);
  4562. -    if((di_ent = cache_dsp_entry (ent_res)) == NULLENTRY)
  4563. +    if((di_ent = cache_dsp_entry (ent_res,TRUE)) == NULLENTRY)
  4564.      {
  4565.      pslog (log_dsap,LLOG_EXCEPTIONS,
  4566.             "dsa_info_result_wakeup - cache_dsp_entry failure",
  4567. diff -u --recursive --new-file isode-8.0/quipu/malloc.c isode-8.0-linux/quipu/malloc.c
  4568. --- isode-8.0/quipu/malloc.c    Tue Jun 16 13:34:31 1992
  4569. +++ isode-8.0-linux/quipu/malloc.c    Wed Jan  5 11:16:11 1994
  4570. @@ -1,3 +1,5 @@
  4571. +#ifndef __linux__
  4572. +
  4573.  /* malloc.c - Quipu DSA specific memory management */
  4574.  
  4575.  #ifndef    lint
  4576. @@ -804,3 +806,5 @@
  4577.  }
  4578.  
  4579.  #endif    /* QUIPUMALLOC */
  4580. +
  4581. +#endif /* __linux__ */
  4582. diff -u --recursive --new-file isode-8.0/quipu/oper_result.c isode-8.0-linux/quipu/oper_result.c
  4583. --- isode-8.0/quipu/oper_result.c    Tue Jun 16 13:34:39 1992
  4584. +++ isode-8.0-linux/quipu/oper_result.c    Wed Jan  5 11:16:11 1994
  4585. @@ -73,7 +73,7 @@
  4586.  
  4587.      /* If we have the arguments we could do more caching here. */
  4588.      if (dr->dr_res.dcr_dsres.result_type == OP_READ)
  4589. -           (void) cache_dsp_entry (&dr->dr_res.dcr_dsres.res_rd.rdr_entry);
  4590. +           (void) cache_dsp_entry (&dr->dr_res.dcr_dsres.res_rd.rdr_entry,TRUE);
  4591.  
  4592.      ds_res_free (&dr->dr_res.dcr_dsres);
  4593.      oper_extract(on);
  4594. diff -u --recursive --new-file isode-8.0/quipu/schema.c isode-8.0-linux/quipu/schema.c
  4595. --- isode-8.0/quipu/schema.c    Tue Jun 16 13:34:47 1992
  4596. +++ isode-8.0-linux/quipu/schema.c    Wed Jan  5 11:16:12 1994
  4597. @@ -108,6 +108,23 @@
  4598.          }
  4599.      }
  4600.  
  4601. +    /* check the each attribute has at least one value */
  4602. +    for (at = eptr->e_attributes; at!=NULLATTR; at=at->attr_link)
  4603. +        if (at->attr_value == NULLAV) {
  4604. +            error->dse_type = DSE_ATTRIBUTEERROR;
  4605. +            error->ERR_ATTRIBUTE.DSE_at_name = 
  4606. +                get_copy_dn (eptr);
  4607. +            error->ERR_ATTRIBUTE.DSE_at_plist.DSE_at_what =
  4608. +                DSE_AT_CONSTRAINTVIOLATION;
  4609. +            error->ERR_ATTRIBUTE.DSE_at_plist.DSE_at_type = 
  4610. +                AttrT_cpy (at->attr_type);
  4611. +            error->ERR_ATTRIBUTE.DSE_at_plist.DSE_at_value = 
  4612. +                NULLAttrV;
  4613. +            error->ERR_ATTRIBUTE.DSE_at_plist.dse_at_next = 
  4614. +                DSE_AT_NOPROBLEM;
  4615. +            return (DS_ERROR_REMOTE);
  4616. +        }
  4617. +
  4618.      /* now check 'must contain' attributes */
  4619.      for (; avs != NULLAV; avs = avs->avseq_next) {
  4620.          oc = (objectclass *) avs->avseq_av.av_struct;
  4621. diff -u --recursive --new-file isode-8.0/quipu/sys_init.c isode-8.0-linux/quipu/sys_init.c
  4622. --- isode-8.0/quipu/sys_init.c    Tue Jun 16 13:34:54 1992
  4623. +++ isode-8.0-linux/quipu/sys_init.c    Mon Jan 17 10:37:58 1994
  4624. @@ -107,7 +107,7 @@
  4625.          && ((statbuf.st_mode & S_IFMT) == S_IFDIR)) {
  4626.              /* tmpdir exists - clean it */
  4627.          struct dirent **namelist;
  4628. -        (void) _scandir(edbtmp_buf, &namelist, rmFiles, NULLIFP);
  4629. +        (void) scandir(edbtmp_buf, &namelist, rmFiles, NULLIFP);
  4630.          if (namelist)
  4631.              free((char *) namelist);
  4632.  
  4633. diff -u --recursive --new-file isode-8.0/quipu/update.c isode-8.0-linux/quipu/update.c
  4634. --- isode-8.0/quipu/update.c    Tue Jun 16 13:35:12 1992
  4635. +++ isode-8.0-linux/quipu/update.c    Wed Jan  5 11:16:12 1994
  4636. @@ -65,6 +65,24 @@
  4637.  static edb_start ();
  4638.  static edb_continue ();
  4639.  
  4640. +#ifdef USE_DSA_WAIT
  4641. +
  4642. +/*
  4643. +dsa_wait() causes problems sometimes -> it is not re-entrant.
  4644. +If the connection we are serving fails, then we free the oper struct
  4645. +we are currently using.
  4646. +Easiest solution is to remove the dsa_wait() calls.
  4647. +But eventually need to work out    how to put them back.  Without then the 
  4648. +blocking during an EDB update will be worse.
  4649. +
  4650. +Also need to look as dsa_wait() calls in ds_search().
  4651. +
  4652. +*/
  4653. +
  4654. +
  4655. +#endif
  4656. +
  4657. +
  4658.  char * edbtmp_path = NULLCP;
  4659.  
  4660.  #ifndef TURBO_DISK
  4661. @@ -411,8 +429,9 @@
  4662.          if(dn || isroot)
  4663.              break;
  4664.  
  4665. +#ifdef USE_DSA_WAIT
  4666.          (void) dsa_wait (0);    /* accept any results of previous ops */
  4667. -
  4668. +#endif
  4669.      }
  4670.      avs_free (avs_head);
  4671.  
  4672. @@ -702,8 +721,9 @@
  4673.      }
  4674.  
  4675.  
  4676. +#ifdef USE_DSA_WAIT
  4677.      (void) dsa_wait (0);    /* progress any other connections before writing EDB */
  4678. -
  4679. +#endif
  4680.      if (eptr->e_children == NULLAVL)
  4681.          slave_edbs++;
  4682.  
  4683. @@ -916,8 +936,9 @@
  4684.      }
  4685.  
  4686.      /* This is a slow process, take a look at the network... */
  4687. +#ifdef USE_DSA_WAIT
  4688.      (void) dsa_wait (0);
  4689. -
  4690. +#endif
  4691.      /* write PE to file */
  4692.  
  4693.      /* Make file name - this is where we could be clever an pick up
  4694. @@ -1010,7 +1031,9 @@
  4695.      edbops = nextop;
  4696.  
  4697.      /* This is a slow process, take a look at the network... */
  4698. +#ifdef USE_DSA_WAIT
  4699.      (void) dsa_wait (0);
  4700. +#endif
  4701.  
  4702.      pe_free (pe);
  4703.  
  4704. @@ -1284,7 +1307,9 @@
  4705.  
  4706.      pe_free(pe);
  4707.  
  4708. +#ifdef USE_DSA_WAIT
  4709.      (void) dsa_wait (0);    /* accept any results of previous ops */
  4710. +#endif
  4711.  
  4712.      return TRUE;
  4713.  }
  4714. diff -u --recursive --new-file isode-8.0/ronot/Makefile isode-8.0-linux/ronot/Makefile
  4715. --- isode-8.0/ronot/Makefile    Tue Jun 16 13:36:37 1992
  4716. +++ isode-8.0-linux/ronot/Makefile    Tue Aug 24 11:51:28 1993
  4717. @@ -59,6 +59,18 @@
  4718.  
  4719.  inst-libronot:    $(LIBDIR)libronot.a $(LINTDIR)llib-lronot
  4720.  
  4721. +zap-ronot:
  4722. +        -rm -f $(OFILES) libronot.a ronotvrsn.o
  4723. +
  4724. +linux-lib:    zap-ronot ../jump/libronot.a
  4725. +
  4726. +../jump/libronot.a:    libronot.a
  4727. +        -rm -f $@
  4728. +        cp libronot.a $@
  4729. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4730. +        -@ls -gls $@
  4731. +        -@echo ""
  4732. +
  4733.  $(LIBDIR)libronot.a:    libronot.a
  4734.          -rm -f $@
  4735.          cp libronot.a $@
  4736. diff -u --recursive --new-file isode-8.0/rosap/Makefile isode-8.0-linux/rosap/Makefile
  4737. --- isode-8.0/rosap/Makefile    Tue Jun 16 13:37:02 1992
  4738. +++ isode-8.0-linux/rosap/Makefile    Wed Aug 25 14:14:43 1993
  4739. @@ -78,6 +78,18 @@
  4740.  
  4741.  inst-librosap:    $(LIBDIR)librosap.a $(LINTDIR)llib-lrosap
  4742.  
  4743. +zap-rosap:
  4744. +        -rm -f $(OFILES) librosap.a ROS_tables.o rosapvrsn.o
  4745. +
  4746. +linux-lib:    zap-rosap ../jump/librosap.a
  4747. +
  4748. +../jump/librosap.a:    librosap.a
  4749. +        -rm -f $@
  4750. +        cp librosap.a $@
  4751. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4752. +        -@ls -gls $@
  4753. +        -@echo ""
  4754. +
  4755.  $(LIBDIR)librosap.a:    librosap.a
  4756.          -rm -f $@
  4757.          cp librosap.a $@
  4758. diff -u --recursive --new-file isode-8.0/rosy/Makefile isode-8.0-linux/rosy/Makefile
  4759. --- isode-8.0/rosy/Makefile    Tue Jun 16 13:37:29 1992
  4760. +++ isode-8.0-linux/rosy/Makefile    Tue Aug 24 11:51:15 1993
  4761. @@ -69,6 +69,7 @@
  4762.          -@echo ""
  4763.  
  4764.  rosy:        xrosy
  4765. +        :
  4766.  
  4767.  xrosy:        rosyvrsn.o $(PEPYLIBES)
  4768.          $(LDCC) $(LDFLAGS) -o $@ rosy.o yacc.o pepy_misc.o \
  4769. @@ -133,6 +134,18 @@
  4770.  OFILES=        $(P-OFILES) $(N-OFILES) $(OSTRINGS)
  4771.  
  4772.  inst-librosy:    $(LIBDIR)librosy.a $(LINTDIR)llib-lrosy
  4773. +
  4774. +zap-rosy:
  4775. +        -rm -f $(OFILES) librosy.a
  4776. +
  4777. +linux-lib:    zap-rosy ../jump/librosy.a
  4778. +
  4779. +../jump/librosy.a:    librosy.a
  4780. +        -rm -f $@
  4781. +        cp librosy.a $@
  4782. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4783. +        -@ls -gls $@
  4784. +        -@echo ""
  4785.  
  4786.  $(LIBDIR)librosy.a:    librosy.a
  4787.          -rm -f $@
  4788. diff -u --recursive --new-file isode-8.0/rosy/rosy.c isode-8.0-linux/rosy/rosy.c
  4789. --- isode-8.0/rosy/rosy.c    Tue Jun 16 13:37:31 1992
  4790. +++ isode-8.0-linux/rosy/rosy.c    Wed Mar  9 15:50:12 1994
  4791. @@ -772,8 +772,8 @@
  4792.  
  4793.      (void) fflush (stdout);
  4794.      (void) fflush (fdef);
  4795. -    (void) fclose (ftbl);
  4796. -    (void) fclose (fstb);
  4797. +    (void) fflush (ftbl);
  4798. +    (void) fflush (fstb);
  4799.  
  4800.      if (ferror (stdout) || ferror (fdef) || ferror (ftbl) || ferror (fstb))
  4801.      myyerror ("write error - %s", sys_errname (errno));
  4802. diff -u --recursive --new-file isode-8.0/rtsap/Makefile isode-8.0-linux/rtsap/Makefile
  4803. --- isode-8.0/rtsap/Makefile    Tue Jun 16 13:37:45 1992
  4804. +++ isode-8.0-linux/rtsap/Makefile    Tue Aug 24 11:51:56 1993
  4805. @@ -73,6 +73,18 @@
  4806.  
  4807.  inst-librtsap:    $(LIBDIR)librtsap.a $(LINTDIR)llib-lrtsap
  4808.  
  4809. +zap-rtsap:
  4810. +        -rm -f $(OFILES) librtsap.a RTS_tables.o rtsapvrsn.o
  4811. +
  4812. +linux-lib:    zap-rtsap ../jump/librtsap.a
  4813. +
  4814. +../jump/librtsap.a:    librtsap.a
  4815. +        -rm -f $@
  4816. +        cp librtsap.a $@
  4817. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4818. +        -@ls -gls $@
  4819. +        -@echo ""
  4820. +
  4821.  $(LIBDIR)librtsap.a:    librtsap.a
  4822.          -rm -f $@
  4823.          cp librtsap.a $@
  4824. diff -u --recursive --new-file isode-8.0/ssap/Makefile isode-8.0-linux/ssap/Makefile
  4825. --- isode-8.0/ssap/Makefile    Tue Jun 16 13:39:41 1992
  4826. +++ isode-8.0-linux/ssap/Makefile    Tue Aug 24 11:53:19 1993
  4827. @@ -66,6 +66,18 @@
  4828.  
  4829.  inst-libssap:    $(LIBDIR)libssap.a $(LINTDIR)llib-lssap
  4830.  
  4831. +zap-ssap:
  4832. +        -rm -f $(OFILES) libssap.a ssapvrsn.o
  4833. +
  4834. +linux-lib:    zap-ssap ../jump/libssap.a
  4835. +
  4836. +../jump/libssap.a:    libssap.a
  4837. +        -rm -f $@
  4838. +        cp libssap.a $@
  4839. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4840. +        -@ls -gls $@
  4841. +        -@echo ""
  4842. +
  4843.  $(LIBDIR)libssap.a:    libssap.a
  4844.          -rm -f $@
  4845.          cp libssap.a $@
  4846. diff -u --recursive --new-file isode-8.0/support/Makefile isode-8.0-linux/support/Makefile
  4847. --- isode-8.0/support/Makefile    Tue Jun 16 13:40:09 1992
  4848. +++ isode-8.0-linux/support/Makefile    Tue Aug 31 10:54:11 1993
  4849. @@ -83,6 +83,7 @@
  4850.          -@echo ""
  4851.  
  4852.  tsapd:        xtsapd
  4853. +        :
  4854.  
  4855.  xtsapd:        tsapd.o $(TOPDIR)libisode.a
  4856.          $(LDCC) $(LDFLAGS) -o $@ tsapd.o $(LIBISODE) $(LSOCKET)
  4857. @@ -103,6 +104,7 @@
  4858.          -@echo ""
  4859.  
  4860.  iaed:        xiaed
  4861. +        :
  4862.  
  4863.  xiaed:        iaed.o $(TOPDIR)libdsap.a $(TOPDIR)libisode.a
  4864.          $(LDCC) $(LDFLAGS) -o $@ iaed.o \
  4865. @@ -140,6 +142,7 @@
  4866.          -@echo ""
  4867.  
  4868.  isore:        xisore
  4869. +        :
  4870.  
  4871.  xisore:        isore.o
  4872.          $(LDCC) $(LDFLAGS) -o $@ isore.o $(TOPDIR)libcompat.a \
  4873. @@ -173,6 +176,7 @@
  4874.          -@echo ""
  4875.  
  4876.  isod:        xisod
  4877. +        :
  4878.  
  4879.  xisod:        isod.o $(TOPDIR)libisode.a
  4880.          $(LDCC) $(LDFLAGS) -o $@ isod.o $(LIBISODE) $(LSOCKET)
  4881. @@ -197,6 +201,7 @@
  4882.          -@echo ""
  4883.  
  4884.  isoc:        xisoc
  4885. +        :
  4886.  
  4887.  xisoc:        isoc.o $(TOPDIR)libisode.a
  4888.          $(LDCC) $(LDFLAGS) -o $@ isoc.o $(LIBISODE) $(LSOCKET)
  4889. @@ -213,6 +218,15 @@
  4890.  
  4891.  inst-libisode:    $(LIBDIR)libisode.a $(LINTDIR)llib-lisode
  4892.  
  4893. +zap-vrsn:
  4894. +        -rm -f isodevrsn.o
  4895. +
  4896. +linux-lib:    zap-vrsn ../jump/libisode.a
  4897. +
  4898. +../jump/libisode.a:    isodevrsn.o
  4899. +        ar r $@ isodevrsn.o
  4900. +        -@echo ""
  4901. +
  4902.  $(LIBDIR)libisode.a:    libisode.a
  4903.          @for i in libisode.* ;\
  4904.          do \
  4905. @@ -372,8 +386,8 @@
  4906.  # lppd
  4907.  ################################################################
  4908.  
  4909. -LPP-LIBES=    $(TOPDIR)libisode-lpp.a
  4910. -LPP-LLIBS=    $(TOPDIR)llib-lisode-lpp
  4911. +LPP-LIBES=    $(TOPDIR)libpsap2-lpp.a $(TOPDIR)libisode.a
  4912. +LPP-LLIBS=    $(TOPDIR)llib-psap2-lpp $(TOPDIR)llib-lisode
  4913.  
  4914.  inst-lppd:    $(SBINDIR)lppd
  4915.  
  4916. @@ -385,6 +399,7 @@
  4917.          -@echo ""
  4918.  
  4919.  lppd:        xlppd
  4920. +        :
  4921.  
  4922.  xlppd:        lppd.o $(LPP-LIBES)
  4923.          $(LDCC) $(LDFLAGS) -o $@ lppd.o $(LPP-LIBES) $(LSOCKET)
  4924. Binary files isode-8.0/support/isoc and isode-8.0-linux/support/isoc differ
  4925. diff -u --recursive --new-file isode-8.0/support/isore.c isode-8.0-linux/support/isore.c
  4926. --- isode-8.0/support/isore.c    Tue Jun 16 13:40:16 1992
  4927. +++ isode-8.0-linux/support/isore.c    Wed Jan  5 11:16:18 1994
  4928. @@ -30,6 +30,10 @@
  4929.  #include "general.h"
  4930.  #include "manifest.h"
  4931.  
  4932. +#ifndef SIGEMT
  4933. +#define SIGEMT    SIGUSR1
  4934. +#endif
  4935. +
  4936.  /*     MAIN */
  4937.  
  4938.  static SFD    EMTser ();
  4939. diff -u --recursive --new-file isode-8.0/support/tsapd.c isode-8.0-linux/support/tsapd.c
  4940. --- isode-8.0/support/tsapd.c    Tue Jun 16 13:40:21 1992
  4941. +++ isode-8.0-linux/support/tsapd.c    Wed Jul 13 17:10:03 1994
  4942. @@ -332,9 +332,18 @@
  4943.          == NULL) {
  4944.  #else
  4945.      for (is = iae; is < iz; is++)
  4946. +    
  4947. +#if 0
  4948. +    /* THIS doesn't work - JPO */
  4949.      if (tsap_addr_cmp (&is -> is_addr, &ts -> ts_called) == OK)
  4950.          break;
  4951. -
  4952. +#else
  4953. +        if (is -> is_addr.ta_selectlen == ts -> ts_called.ta_selectlen
  4954. +        && bcmp (is -> is_addr.ta_selector,
  4955. +             ts -> ts_called.ta_selector,
  4956. +             is -> is_addr.ta_selectlen) == 0)
  4957. +        break;
  4958. +#endif
  4959.      if (is >= iz) {
  4960.  #endif
  4961.          (void) sprintf (buffer, "OSI service tsap/%s not found",
  4962. diff -u --recursive --new-file isode-8.0/tsap/Makefile isode-8.0-linux/tsap/Makefile
  4963. --- isode-8.0/tsap/Makefile    Tue Jun 16 13:40:41 1992
  4964. +++ isode-8.0-linux/tsap/Makefile    Tue Aug 24 11:53:31 1993
  4965. @@ -63,6 +63,18 @@
  4966.  
  4967.  inst-libtsap:    $(LIBDIR)libtsap.a $(LINTDIR)llib-ltsap
  4968.  
  4969. +zap-tsap:
  4970. +        -rm -f $(OFILES) libtsap.a tsapvrsn.o
  4971. +
  4972. +linux-lib:    zap-tsap ../jump/libtsap.a
  4973. +
  4974. +../jump/libtsap.a:    libtsap.a
  4975. +        -rm -f $@
  4976. +        cp libtsap.a $@
  4977. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4978. +        -@ls -gls $@
  4979. +        -@echo ""
  4980. +
  4981.  $(LIBDIR)libtsap.a:    libtsap.a
  4982.          -rm -f $@
  4983.          cp libtsap.a $@
  4984. diff -u --recursive --new-file isode-8.0/tsap/tp0ts.c isode-8.0-linux/tsap/tp0ts.c
  4985. --- isode-8.0/tsap/tp0ts.c    Tue Jun 16 13:40:44 1992
  4986. +++ isode-8.0-linux/tsap/tp0ts.c    Wed Jan  5 11:16:18 1994
  4987. @@ -1041,8 +1041,10 @@
  4988.              != qb -> qb_len) {
  4989.          if (nc == NOTOK) {
  4990.          if (errno != EWOULDBLOCK) {
  4991. -            result = tsaplose (td, DR_NETWORK, "failed",
  4992. -                      "write to network");
  4993. +            (void) tpktlose (tb, td, DR_NETWORK, "failed",
  4994. +            "write to network");
  4995. +            result = NOTOK;
  4996. +
  4997.              goto out;
  4998.          }
  4999.  
  5000. diff -u --recursive --new-file isode-8.0/tsap/ts2tcp.c isode-8.0-linux/tsap/ts2tcp.c
  5001. --- isode-8.0/tsap/ts2tcp.c    Tue Jun 16 13:40:45 1992
  5002. +++ isode-8.0-linux/tsap/ts2tcp.c    Wed Jan  5 11:16:18 1994
  5003. @@ -37,7 +37,7 @@
  5004.  #ifdef    BSD42
  5005.  #include <sys/ioctl.h>
  5006.  #endif
  5007. -#ifdef    SYS5
  5008. +#if defined(SYS5) || defined(__linux__)
  5009.  #include <fcntl.h>
  5010.  #endif
  5011.  
  5012. diff -u --recursive --new-file isode-8.0/tsap/tsaprovider.c isode-8.0-linux/tsap/tsaprovider.c
  5013. --- isode-8.0/tsap/tsaprovider.c    Tue Jun 16 13:40:51 1992
  5014. +++ isode-8.0-linux/tsap/tsaprovider.c    Wed Jan  5 11:16:18 1994
  5015. @@ -36,6 +36,9 @@
  5016.  #include "sys.file.h"
  5017.  #include <sys/stat.h>
  5018.  
  5019. +#ifdef __linux__
  5020. +#include <linux/sockios.h>
  5021. +#endif
  5022.  
  5023.  #define    selmask(fd,m,n) \
  5024.  { \
  5025. @@ -421,7 +424,7 @@
  5026.      register struct TSAPdisconnect *td = &tds;
  5027.  
  5028.  #ifndef    BSDSIGS
  5029. -    (void) signal (SIGEMT, DATAser);
  5030. +    (void) signal (_SIGIO, DATAser);
  5031.  
  5032.      smask = sigioblock ();
  5033.  #endif
  5034. @@ -472,7 +475,7 @@
  5035.      }
  5036.  
  5037.  #ifndef    SIGPOLL
  5038. -    (void) kill (TPid, SIGEMT);
  5039. +    (void) kill (TPid, _SIGIO);
  5040.  #endif
  5041.  
  5042.  #ifndef    BSDSIGS
  5043. @@ -514,10 +517,10 @@
  5044.      return tsaplose (td, DR_CONGEST, NULLCP, "you lose");
  5045.      if (!inited) {
  5046.  #ifndef    BSDSIGS
  5047. -    int    smask = sigsetmask (sigblock (0) & ~sigmask (SIGEMT));
  5048. +    int    smask = sigsetmask (sigblock (0) & ~sigmask (_SIGIO));
  5049.  #endif
  5050.  
  5051. -    (void) signal (SIGEMT, DATAser);
  5052. +    (void) signal (_SIGIO, DATAser);
  5053.  #ifndef    BSDSIGS
  5054.      (void) sigiomask (smask);
  5055.  #endif
  5056. @@ -542,7 +545,7 @@
  5057.          continue;
  5058.  
  5059.          case OK: 
  5060. -        (void) signal (SIGEMT, SIG_DFL);
  5061. +        (void) signal (_SIGIO, SIG_DFL);
  5062.          (void) execv (*is -> is_vec, is -> is_vec);
  5063.          _exit (1);
  5064.  
  5065. diff -u --recursive --new-file isode-8.0/util/make-lib.sh isode-8.0-linux/util/make-lib.sh
  5066. --- isode-8.0/util/make-lib.sh    Tue Jun 16 11:12:10 1992
  5067. +++ isode-8.0-linux/util/make-lib.sh    Mon Jul  4 13:06:14 1994
  5068. @@ -1,6 +1,6 @@
  5069.  : run this script through /bin/sh
  5070.  
  5071. -M=BSD42 L= O= S= Q= SHD= MAJ= MIN= LD=ld
  5072. +M=BSD42 L= O= S= Q= SHD= MAJ= MIN= #LD=ld
  5073.  
  5074.  while [ $# -gt 0 ]
  5075.  do
  5076. diff -u --recursive --new-file isode-8.0/util/version.sh isode-8.0-linux/util/version.sh
  5077. --- isode-8.0/util/version.sh    Tue Jun 16 11:12:10 1992
  5078. +++ isode-8.0-linux/util/version.sh    Thu Aug 19 15:39:29 1993
  5079. @@ -1,7 +1,7 @@
  5080.  : run this script through /bin/sh
  5081.  
  5082.  : this hacks past a bug in make...
  5083. -exec 3<&- 4<&- 5<&- 6<&- 7<&-
  5084. +#exec 3<&- 4<&- 5<&- 6<&- 7<&-
  5085.  
  5086.  OFS="$IFS" IFS=:
  5087.  
  5088. diff -u --recursive --new-file isode-8.0/vt/Makefile isode-8.0-linux/vt/Makefile
  5089. --- isode-8.0/vt/Makefile    Tue Jun 16 13:41:09 1992
  5090. +++ isode-8.0-linux/vt/Makefile    Mon Aug 23 15:16:14 1993
  5091. @@ -74,6 +74,7 @@
  5092.          -@echo ""
  5093.  
  5094.  vtd:        xvtd
  5095. +        :
  5096.  
  5097.  xvtd:        vtd.o $(OFILES) libvt.a $(LIBES)
  5098.          $(LDCC) $(LDFLAGS) -o $@ vtd.o $(OFILES) libvt.a \
  5099. @@ -108,6 +109,7 @@
  5100.          -@echo ""
  5101.  
  5102.  vt:        xvt
  5103. +        :
  5104.  
  5105.  xvt:        vt.o $(OFILES) libvt.a $(LIBES)
  5106.          $(LDCC) $(LDFLAGS) -o $@ vt.o $(OFILES) libvt.a \
  5107. diff -u --recursive --new-file isode-8.0/vt/map.c isode-8.0-linux/vt/map.c
  5108. --- isode-8.0/vt/map.c    Tue Jun 16 13:41:11 1992
  5109. +++ isode-8.0-linux/vt/map.c    Wed Jan  5 11:16:19 1994
  5110. @@ -37,7 +37,12 @@
  5111.  #include <sys/ioctl.h>
  5112.  #endif
  5113.  #ifdef TERMIOS
  5114. +#ifdef __linux__
  5115. +#include <termios.h>
  5116. +#include <unistd.h>
  5117. +#else
  5118.  #include <sys/termios.h>
  5119. +#endif
  5120.  #endif
  5121.  #include <fcntl.h>
  5122.  
  5123. diff -u --recursive --new-file isode-8.0/vt/vt.c isode-8.0-linux/vt/vt.c
  5124. --- isode-8.0/vt/vt.c    Tue Jun 16 13:41:20 1992
  5125. +++ isode-8.0-linux/vt/vt.c    Tue Jul 12 11:42:21 1994
  5126. @@ -34,8 +34,12 @@
  5127.  #include <sys/ioctl.h>
  5128.  #endif
  5129.  #ifdef TERMIOS
  5130. +#ifdef __linux__
  5131. +#include <termios.h>
  5132. +#else
  5133.  #include <sys/termios.h>
  5134.  #endif
  5135. +#endif
  5136.  #include <ctype.h>
  5137.  #include <setjmp.h>
  5138.  #include <varargs.h>
  5139. @@ -1275,10 +1279,7 @@
  5140.              fd_set    ibits, obits;
  5141.  
  5142.          FD_ZERO (&ibits);
  5143. -
  5144.          FD_ZERO (&obits);
  5145. -        FD_SET (tout, &obits);
  5146. -        FD_SET (s, &obits);
  5147.  
  5148.          if (nfrontp - nbackp)
  5149.              FD_SET (s, &obits);
  5150. diff -u --recursive --new-file isode-8.0/vt/vtd.c isode-8.0-linux/vt/vtd.c
  5151. --- isode-8.0/vt/vtd.c    Tue Jun 16 13:41:21 1992
  5152. +++ isode-8.0-linux/vt/vtd.c    Mon Jul 11 10:39:30 1994
  5153. @@ -36,7 +36,12 @@
  5154.  #include <sys/ioctl.h>
  5155.  #endif
  5156.  #ifdef    TERMIOS
  5157. +#ifdef __linux__
  5158. +#include <termios.h>
  5159. +#include <unistd.h>
  5160. +#else
  5161.  #include <sys/termios.h>
  5162. +#endif
  5163.  #ifdef BSD44
  5164.  #include <sys/ttydefaults.h>
  5165.  #include <sys/stat.h>
  5166. @@ -61,13 +66,17 @@
  5167.  #include <varargs.h>
  5168.  
  5169.  #define    BELL    '\07'
  5170. -#ifndef    SUNOS4
  5171. -#define BANNER    "\r\n\r\n4.2 BSD UNIX (%s)\r\n\r\n\r%s"
  5172. -#else
  5173. +#ifdef    SUNOS4
  5174.  #define BANNER    "\r\n\r\nSunOS UNIX (%s)\r\n\r\n\r%s"
  5175. +#else
  5176. +#ifdef __linux__
  5177. +#define BANNER    "\r\n\r\nLinux (%s)\r\n\r\n\r%s"
  5178. +#else
  5179. +#define BANNER    "\r\n\r\n4.2 BSD UNIX (%s)\r\n\r\n\r%s"
  5180.  #endif
  5181. +#endif
  5182.  
  5183. -#if !defined(SYS5) && !defined(BSD44) && !defined(_AIX)
  5184. +#if !defined(SYS5) && !defined(BSD44) && !defined(_AIX) && !defined(__linux__)
  5185.  void    vhangup();
  5186.  #endif
  5187.  
  5188. @@ -199,7 +208,7 @@
  5189.      }
  5190.      else
  5191.          exit(1);
  5192. -#ifdef TERMIOS
  5193. +#if defined(TERMIOS) && !defined(__linux__)
  5194.      na_image = 0;
  5195.      nego_state = 0;            /*Start off in Local echo*/
  5196.      i = forkpty(&p, line, NULL, NULL);
  5197. @@ -231,6 +240,9 @@
  5198.  gotpty:
  5199.  
  5200.      cp[strlen("/dev/")] = 't';
  5201. +#ifdef __linux__
  5202. +    setsid();
  5203. +#else
  5204.      t = open("/dev/tty", 2);
  5205.      if (t >= 0) {
  5206.          if (ioctl(t, TIOCNOTTY, 0) == -1) {
  5207. @@ -238,9 +250,11 @@
  5208.          }
  5209.          (void)close(t);
  5210.      }
  5211. +#endif
  5212.      t = open(cp, 2);
  5213.      if (t < 0)
  5214.          fatalperror(f, cp, errno);
  5215. +#ifndef TERMIOS
  5216.      if (ioctl(t, TIOCGETP, (char*)&b) == -1) {
  5217.          perror("ioctl (TIOCGETP)");
  5218.          adios(NULLCP, "ioctl failed (TIOCGETP)");
  5219. @@ -262,6 +276,7 @@
  5220.          perror("ioctl (TIOCSETP)");
  5221.          adios(NULLCP, "ioctl failed (TIOCSETP)");
  5222.      }
  5223. +#endif
  5224.      na_image = 0;
  5225.      nego_state = 0;            /*Start off in Local echo*/
  5226.  
  5227. diff -u --recursive --new-file isode-8.0/vt/vtpm.h isode-8.0-linux/vt/vtpm.h
  5228. --- isode-8.0/vt/vtpm.h    Tue Jun 16 13:41:22 1992
  5229. +++ isode-8.0-linux/vt/vtpm.h    Mon Jul 11 09:01:53 1994
  5230. @@ -30,7 +30,7 @@
  5231.  /* Make sure this is here in new versions */
  5232.  /*#include "sector1.h"*/
  5233.  
  5234. -#if (defined(BSD44) || defined(SVR4)) && ! defined(_AIX)
  5235. +#if (defined(BSD44) || defined(SVR4) || defined(__linux__)) && ! defined(_AIX)
  5236.  #define TERMIOS
  5237.  #endif
  5238.  
  5239.  
  5240. END OF PATCH
  5241.  
  5242.